diff options
-rw-r--r-- | build/set_perf_images.sh | 2 | ||||
-rwxr-xr-x | ci/deploy.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/build/set_perf_images.sh b/build/set_perf_images.sh index 04702a93..2002e6fb 100644 --- a/build/set_perf_images.sh +++ b/build/set_perf_images.sh @@ -18,7 +18,7 @@ for ROLE in $@; do fi if [ "$ROLE" == "Controller" ]; then - sed -i "s/overcloud-full/Controller-overcloud-full" opnfv-environment.yaml + sed -i "s/overcloud-full/Controller-overcloud-full/" opnfv-environment.yaml fi if [ "$ROLE" == "Compute" ]; then diff --git a/ci/deploy.sh b/ci/deploy.sh index 4f123e10..30a6af29 100755 --- a/ci/deploy.sh +++ b/ci/deploy.sh @@ -510,7 +510,7 @@ function setup_virtual_baremetal { EOF # next create the virtual machines and add their definitions to the file - if [ ha_enabled == "False" ]; then + if [ "$ha_enabled" == "False" ]; then # 1 controller + computes # zero based so just pass compute count vm_index=$VM_COMPUTES |