diff options
-rwxr-xr-x | ci/deploy.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ci/deploy.sh b/ci/deploy.sh index ab3e5e34..0534d841 100755 --- a/ci/deploy.sh +++ b/ci/deploy.sh @@ -340,11 +340,17 @@ if ([ $opnfvmodel == "openstack" ]); then # creating heat domain after pushing the public API into /etc/hosts status=`juju run-action heat/0 domain-setup` echo $status + status=`juju run-action ceilometer/0 ceilometer-upgrade` + echo $status if ([ $opnftype == "ha" ]); then status=`juju run-action heat/1 domain-setup` echo $status + status=`juju run-action ceilometer/1 ceilometer-upgrade` + echo $status status=`juju run-action heat/2 domain-setup` echo $status + status=`juju run-action ceilometer/2 ceilometer-upgrade` + echo $status fi sudo ../juju/get-cloud-images || true |