diff options
author | Narinder Gupta <narinder.gupta@canonical.com> | 2016-01-07 02:05:25 -0600 |
---|---|---|
committer | Narinder Gupta <narinder.gupta@canonical.com> | 2016-01-07 02:05:25 -0600 |
commit | 47f9ff23bf14140a83db77152b8204abd27b649e (patch) | |
tree | a1479f6c1a1d5ed2f2bb33c267d1c672a02d6502 /ci/opencontrail/01-deploybundle.sh | |
parent | 35f32f109823e43e4db671660aee76f35d7b760c (diff) |
increase timeout for all deployments as virtual deployment takes
more time.
Change-Id: I6d9d79cb6162c2def95a65e67f316f96e0b1665f
Diffstat (limited to 'ci/opencontrail/01-deploybundle.sh')
-rwxr-xr-x | ci/opencontrail/01-deploybundle.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ci/opencontrail/01-deploybundle.sh b/ci/opencontrail/01-deploybundle.sh index 19d67a60..dd2e49ba 100755 --- a/ci/opencontrail/01-deploybundle.sh +++ b/ci/opencontrail/01-deploybundle.sh @@ -76,19 +76,19 @@ echo "... Deployment Started ...." case "$1" in 'nonha' ) juju-deployer -vW -d -c bundles.yaml trusty-"$2"-nodes - juju-deployer -vW -d -t 3600 -c bundles.yaml trusty-"$2" + juju-deployer -vW -d -t 7200 -c bundles.yaml trusty-"$2" ;; 'ha' ) juju-deployer -vW -d -c bundles.yaml trusty-"$2"-nodes - juju-deployer -vW -d -t 3600 -c bundles.yaml trusty-"$2" + juju-deployer -vW -d -t 7200 -c bundles.yaml trusty-"$2" ;; 'tip' ) juju-deployer -vW -d -c bundles.yaml trusty-"$2"-nodes - juju-deployer -vW -d -t 3600 -c bundles.yaml trusty-"$2" + juju-deployer -vW -d -t 7200 -c bundles.yaml trusty-"$2" ;; * ) juju-deployer -vW -d -c bundles.yaml trusty-"$2"-nodes - juju-deployer -vW -d -t 3600 -c bundles.yaml trusty-"$2" + juju-deployer -vW -d -t 7200 -c bundles.yaml trusty-"$2" ;; esac |