diff options
author | Narinder Gupta <narinder.gupta@canonical.com> | 2016-01-07 10:07:53 -0600 |
---|---|---|
committer | Narinder Gupta <narinder.gupta@canonical.com> | 2016-01-07 10:07:53 -0600 |
commit | fcf9fd1914d82e6b4fa22edaed6d3d6d7a0c9860 (patch) | |
tree | 2bf4fcad4085d2fae95496bec393af0090604ddb /ci/onos/01-deploybundle.sh | |
parent | 47f9ff23bf14140a83db77152b8204abd27b649e (diff) |
added the retry count to juju-deployer in case od error in can
be retried.
Change-Id: Ic1bf10dcb9bf5f5b3a8c8ce94bbc6332731e667b
Diffstat (limited to 'ci/onos/01-deploybundle.sh')
-rw-r--r-- | ci/onos/01-deploybundle.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ci/onos/01-deploybundle.sh b/ci/onos/01-deploybundle.sh index b2f9367a..dbd74b45 100644 --- a/ci/onos/01-deploybundle.sh +++ b/ci/onos/01-deploybundle.sh @@ -81,19 +81,19 @@ echo "... Deployment Started ...." case "$1" in 'nonha' ) juju-deployer -vW -d -c bundles.yaml trusty-"$2"-nodes - juju-deployer -vW -d -t 7200 -c bundles.yaml trusty-"$2" + juju-deployer -vW -d -t 7200 -r 5 -c bundles.yaml trusty-"$2" ;; 'ha' ) juju-deployer -vW -d -c bundles.yaml trusty-"$2"-nodes - juju-deployer -vW -d -t 7200 -c bundles.yaml trusty-"$2" + juju-deployer -vW -d -t 7200 -r 5 -c bundles.yaml trusty-"$2" ;; 'tip' ) juju-deployer -vW -d -c bundles.yaml trusty-"$2"-nodes - juju-deployer -vW -d -t 7200 -c bundles.yaml trusty-"$2" + juju-deployer -vW -d -t 7200 -r 5 -c bundles.yaml trusty-"$2" ;; * ) juju-deployer -vW -d -c bundles.yaml trusty-"$2"-nodes - juju-deployer -vW -d -t 7200 -c bundles.yaml trusty-"$2" + juju-deployer -vW -d -t 7200 -r 5 -c bundles.yaml trusty-"$2" ;; esac |