diff options
author | Gary Wu <gary.wu@futurewei.com> | 2019-07-09 11:23:17 -0700 |
---|---|---|
committer | Gary Wu <gary.wu@futurewei.com> | 2019-07-09 11:23:17 -0700 |
commit | 3adfd35f7946e0ff31870fe69ab7f43d127303b2 (patch) | |
tree | b009470dc608fca7de55faf520f00b3203a94cce /deployment/heat/onap-rke/scripts | |
parent | a6d37fe2d27024609815d1fafd7821c54f6b5d1d (diff) |
Bug fix in deploy script
Issue-ID: INT-1128
Signed-off-by: Gary Wu <gary.wu@futurewei.com>
Change-Id: I500a920389d3ed9fd792f5ece7c22f9356a86fc8
Diffstat (limited to 'deployment/heat/onap-rke/scripts')
-rwxr-xr-x | deployment/heat/onap-rke/scripts/deploy.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deployment/heat/onap-rke/scripts/deploy.sh b/deployment/heat/onap-rke/scripts/deploy.sh index c6f665cd5..456be2b67 100755 --- a/deployment/heat/onap-rke/scripts/deploy.sh +++ b/deployment/heat/onap-rke/scripts/deploy.sh @@ -147,7 +147,7 @@ for n in $(seq 1 5); do ./scripts/gen-onap-oom-yaml.sh $vm_num > onap-oom.yaml~ fi - if ! openstack stack create -t ./onap-oom.yaml~ -e $ENV_FILE~ $stack_name --parameter integration_gerrit_branch=$integration_gerrit_branch --parameter oom_gerrit_branch=$oom_gerrit_branch -parameter portal_hostname=$portal_hostname; then + if ! openstack stack create -t ./onap-oom.yaml~ -e $ENV_FILE~ $stack_name --parameter integration_gerrit_branch=$integration_gerrit_branch --parameter oom_gerrit_branch=$oom_gerrit_branch --parameter portal_hostname=$portal_hostname; then break fi |