diff --git a/common.sh b/common.sh index fc8b641bf..2258993c9 100644 --- a/common.sh +++ b/common.sh @@ -375,3 +375,7 @@ fi # Defaults the variable to enable testing a custom machine-api-operator image export TEST_CUSTOM_MAO=${TEST_CUSTOM_MAO:-false} + +# Set to configure bootstrap VM baremetal network with static IP +# (Currently this just expects a non-empty value, the IP is fixed to .9) +export ENABLE_BOOTSTRAP_STATIC_IP=${ENABLE_BOOTSTRAP_STATIC_IP:-} diff --git a/config_example.sh b/config_example.sh index a11632ff1..6cdab827e 100755 --- a/config_example.sh +++ b/config_example.sh @@ -342,6 +342,11 @@ set -x #export EXTERNAL_SUBNET_V4="11.0.0.0/24" #export EXTERNAL_SUBNET_V6="fd2e:6f44:5dd8:c956::/120" +# ENABLE_BOOTSTRAP_STATIC_IP - +# Configure a static IP for the bootstrap VM external NIC +# (Currently this just expects a non-empty value, the IP is fixed to .9) +# export ENABLE_BOOTSTRAP_STATIC_IP=true + ################################################################################ ## VM Settings ## diff --git a/ocp_install_env.sh b/ocp_install_env.sh index 4f5c8a6e0..f442e0106 100644 --- a/ocp_install_env.sh +++ b/ocp_install_env.sh @@ -96,6 +96,19 @@ cat <