-
Notifications
You must be signed in to change notification settings - Fork 208
Expand file tree
/
Copy pathagent-compact-ipv4.sh
More file actions
28 lines (25 loc) · 1.06 KB
/
agent-compact-ipv4.sh
File metadata and controls
28 lines (25 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/bash
################################################################################
## Agent-Based Compact IPv4 (3 masters, 0 workers)
##
## A compact cluster using the agent-based installer with IPv4 networking.
## Three control-plane nodes that also run workloads, no dedicated workers.
##
## Usage:
## ./use-template.sh agent-compact-ipv4
## # Then edit config_$USER.sh to set your CI_TOKEN
## cd agent && ./01_agent_requirements.sh && ./03_agent_build_installer.sh && \
## ./04_agent_prepare_release.sh && ./05_agent_configure.sh && \
## ./06_agent_create_cluster.sh
##
################################################################################
# CI_TOKEN - **REQUIRED**
# Get this token from https://console-openshift-console.apps.ci.l2s4.p1.openshiftapps.com/
# by clicking on your name in the top right corner and copying the login command
set +x
export CI_TOKEN='<insert-your-token-here>'
set -x
# Network: IPv4 single stack (default is v6)
export IP_STACK="v4"
# Agent-based installer settings
export AGENT_E2E_TEST_SCENARIO="COMPACT_IPV4"