summaryrefslogtreecommitdiffstats
path: root/ci/nosdn
diff options
context:
space:
mode:
authorNarinder Gupta <narinder.gupta@canonical.com>2016-01-07 10:07:53 -0600
committerNarinder Gupta <narinder.gupta@canonical.com>2016-01-08 20:25:48 +0000
commit07b35e22299c8e0cd5c39340b05420a1109b6268 (patch)
tree2bf4fcad4085d2fae95496bec393af0090604ddb /ci/nosdn
parent92d04179edb97f2fa504635844592402ad7319e3 (diff)
added the retry count to juju-deployer in case od error in can
be retried. Change-Id: Ic1bf10dcb9bf5f5b3a8c8ce94bbc6332731e667b (cherry picked from commit fcf9fd1914d82e6b4fa22edaed6d3d6d7a0c9860)
Diffstat (limited to 'ci/nosdn')
-rwxr-xr-xci/nosdn/01-deploybundle.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/ci/nosdn/01-deploybundle.sh b/ci/nosdn/01-deploybundle.sh
index 1ad44a9b..92295fe7 100755
--- a/ci/nosdn/01-deploybundle.sh
+++ b/ci/nosdn/01-deploybundle.sh
@@ -75,19 +75,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