diff options
author | Dan Radez <dradez@redhat.com> | 2016-05-31 15:29:20 -0400 |
---|---|---|
committer | Dan Radez <dradez@redhat.com> | 2016-05-31 15:29:20 -0400 |
commit | 07ff97ce0ac815bafad4c263af5e17ab8df193ce (patch) | |
tree | 164fe73d2ed056a453d8097259f91da7a2947aca | |
parent | d0b0b02020575667b317f47fa9c30694c1173903 (diff) |
Fixing some deploy options boolean case
Change-Id: I98e4529b6631ed89912dc55c397993df3da10291
Signed-off-by: Dan Radez <dradez@redhat.com>
-rwxr-xr-x | ci/deploy.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ci/deploy.sh b/ci/deploy.sh index b99a5693..bd5a675b 100755 --- a/ci/deploy.sh +++ b/ci/deploy.sh @@ -651,7 +651,7 @@ function configure_network_environment { fi # check for ODL L3 - if [ "${deploy_options_array['sdn_l3']}" == 'true' ]; then + if [ "${deploy_options_array['sdn_l3']}" == 'True' ]; then ext_net_type=br-ex fi @@ -789,15 +789,15 @@ function undercloud_prep_overcloud_deploy { if [[ "${#deploy_options_array[@]}" -eq 0 || "${deploy_options_array['sdn_controller']}" == 'opendaylight' ]]; then if [ "${deploy_options_array['sdn_l3']}" == 'true' ]; then DEPLOY_OPTIONS+=" -e /usr/share/openstack-tripleo-heat-templates/environments/opendaylight_l3.yaml" - elif [ "${deploy_options_array['sfc']}" == 'true' ]; then + elif [ "${deploy_options_array['sfc']}" == 'True' ]; then DEPLOY_OPTIONS+=" -e /usr/share/openstack-tripleo-heat-templates/environments/opendaylight_sfc.yaml" - elif [ "${deploy_options_array['vpn']}" == 'true' ]; then + elif [ "${deploy_options_array['vpn']}" == 'True' ]; then DEPLOY_OPTIONS+=" -e /usr/share/openstack-tripleo-heat-templates/environments/opendaylight_sdnvpn.yaml" else DEPLOY_OPTIONS+=" -e /usr/share/openstack-tripleo-heat-templates/environments/opendaylight.yaml" fi SDN_IMAGE=opendaylight - if [ "${deploy_options_array['sfc']}" == 'true' ]; then + if [ "${deploy_options_array['sfc']}" == 'True' ]; then SDN_IMAGE+=-sfc if [ ! -f $RESOURCES/overcloud-full-${SDN_IMAGE}.qcow2 ]; then echo "${red} $RESOURCES/overcloud-full-${SDN_IMAGE}.qcow2 is required to execute an SFC deployment." @@ -1011,7 +1011,7 @@ EOI fi # for sfc deployments we need the vxlan workaround - if [ "${deploy_options_array['sfc']}" == 'true' ]; then + if [ "${deploy_options_array['sfc']}" == 'True' ]; then ssh -T ${SSH_OPTIONS[@]} "stack@$UNDERCLOUD" <<EOI source stackrc set -o errexit |