diff options
Diffstat (limited to 'ci/deploy.sh')
-rwxr-xr-x | ci/deploy.sh | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/ci/deploy.sh b/ci/deploy.sh index 1dab85d8..dbe0ef97 100755 --- a/ci/deploy.sh +++ b/ci/deploy.sh @@ -110,6 +110,12 @@ deploy() { if [ ! -f ./environments.yaml ] && [ -e ~/.juju/environments.yaml ]; then cp ~/.juju/environments.yaml ./environments.yaml fi + if [ ! -f ./labconfig.yaml ] && [ -e ~/.juju/labconfig.yaml ]; then + cp ~/.juju/labconfig.yaml ./labconfig.yaml + fi + if [ ! -f ./deployconfig.yaml ] && [ -e ~/.juju/deployconfig.yaml ]; then + cp ~/.juju/deployconfig.yaml ./deployconfig.yaml + fi #copy the script which needs to get deployed as part of ofnfv release echo "...... deploying now ......" @@ -164,7 +170,7 @@ check_status echo "...... deployment finished ......." -./openstack.sh "$opnfvsdn" "$opnfvlab" || true +./openstack.sh "$opnfvsdn" "$opnfvlab" "$opnfvdistro" "$openstack" || true sudo ../juju/get-cloud-images || true ../juju/joid-configure-openstack || true |