diff options
author | Dan Radez <dradez@redhat.com> | 2016-01-15 18:58:36 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2016-01-15 18:58:37 +0000 |
commit | 266eaa1148a529e829c322320d27842bad280157 (patch) | |
tree | 73f99a61edc4fac9b0c5b2c6959b04e8353f5ea8 /ci/deploy.sh | |
parent | ca121bf38faf234cc3925e1016d2d7445259e670 (diff) | |
parent | 56c6f66756d8096d0fad327cbb5f1c728d8c0974 (diff) |
Merge "Adds scenario deploy settings files"
Diffstat (limited to 'ci/deploy.sh')
-rwxr-xr-x | ci/deploy.sh | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/ci/deploy.sh b/ci/deploy.sh index 02e98864..232d8251 100755 --- a/ci/deploy.sh +++ b/ci/deploy.sh @@ -763,7 +763,7 @@ sleep 15 ##preping it for deployment and launch the deploy ##params: none function undercloud_prep_overcloud_deploy { - + # TODO ADD ODL L3 logic here if [[ ${#deploy_options_array[@]} -eq 0 || ${deploy_options_array['sdn_controller']} == 'opendaylight' ]]; then DEPLOY_OPTIONS+=" -e /usr/share/openstack-tripleo-heat-templates/environments/opendaylight.yaml" elif [ ${deploy_options_array['sdn_controller']} == 'opendaylight-external' ]; then @@ -963,7 +963,7 @@ parse_cmdline() { if [[ ! -z "$NETSETS" && "$net_isolation_enabled" == "FALSE" ]]; then echo -e "${red}INFO: Single flat network requested. Ignoring any network settings!${reset}" elif [[ -z "$NETSETS" && "$net_isolation_enabled" == "TRUE" ]]; then - echo -e "${red}ERROR: You must provide a network_settings file with -n or use --flat to force a single flat network{reset}" + echo -e "${red}ERROR: You must provide a network_settings file with -n or use --flat to force a single flat network${reset}" exit 1 fi @@ -991,6 +991,11 @@ parse_cmdline() { echo -e "${red}ERROR: You must specify an inventory file for baremetal deployments! Exiting...${reset}" exit 1 fi + + if [[ "$net_isolation_enabled" == "FALSE" && "$post_config" == "TRUE" ]]; then + echo -e "${blue}INFO: Post Install Configuration will be skipped. It is not supported with --flat${reset}" + post_config="FALSE" + fi } ##END FUNCTIONS |