diff --git a/02_configure_host.sh b/02_configure_host.sh index e81ec7fa2..9a31a84bf 100755 --- a/02_configure_host.sh +++ b/02_configure_host.sh @@ -4,7 +4,6 @@ set -xe source logging.sh source common.sh source utils.sh -source ocp_install_env.sh # Generate user ssh key if [ ! -f $HOME/.ssh/id_rsa.pub ]; then diff --git a/06_create_cluster.sh b/06_create_cluster.sh index e4cc659ab..007585a15 100755 --- a/06_create_cluster.sh +++ b/06_create_cluster.sh @@ -5,8 +5,8 @@ set -e source logging.sh source utils.sh source common.sh -source ocp_install_env.sh source rhcos.sh +source ocp_install_env.sh # Do some PULL_SECRET sanity checking if [[ "${OPENSHIFT_RELEASE_IMAGE}" == *"registry.svc.ci.openshift.org"* ]]; then diff --git a/ocp_install_env.sh b/ocp_install_env.sh index f3be47ed9..1d011f0f3 100644 --- a/ocp_install_env.sh +++ b/ocp_install_env.sh @@ -95,6 +95,11 @@ controlPlane: platform: baremetal: dnsVIP: ${DNS_VIP} + provisioningInterface: "ens3" + provisioningNetworkCIDR: "172.22.0.0/24" + provisioningIP: "172.22.0.3/24" + provisioningDHCPRange: "172.22.0.10,172.22.0.100" + rhcosImageURL: "${RHCOS_IMAGE_URL}" hosts: $(master_node_map_to_install_config $NUM_MASTERS) pullSecret: |