diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2018-05-08 19:13:59 -0700 |
---|---|---|
committer | Gary Wu <gary.i.wu@huawei.com> | 2018-05-08 19:13:59 -0700 |
commit | 5627a69f5fd64e2e081dec510c4fbf76aeb1c36d (patch) | |
tree | ee05b03d7fb1d8ded80fdf7adc07e0b7e672de15 /deployment/heat/onap-oom/scripts/deploy.sh | |
parent | ed53a301dbeaad568b21b9545cb9ce6c5c040b29 (diff) |
Shorten health check wait loop to 1.5 hours
Change-Id: Ic4c11dcfacef1d9dbb97f9f29677e07f9c149d00
Issue-ID: INT-381
Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
Diffstat (limited to 'deployment/heat/onap-oom/scripts/deploy.sh')
-rwxr-xr-x | deployment/heat/onap-oom/scripts/deploy.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deployment/heat/onap-oom/scripts/deploy.sh b/deployment/heat/onap-oom/scripts/deploy.sh index 8ab79a2c8..656b410a9 100755 --- a/deployment/heat/onap-oom/scripts/deploy.sh +++ b/deployment/heat/onap-oom/scripts/deploy.sh @@ -39,7 +39,7 @@ if ! timeout 1 ping -c 1 "$RANCHER_IP"; then fi ssh-keygen -R $RANCHER_IP -for n in $(seq 1 10); do +for n in $(seq 1 6); do timeout 15m ssh -o StrictHostKeychecking=no -i ~/.ssh/onap_key ubuntu@$RANCHER_IP 'sudo su -l root -c "/root/oom/kubernetes/robot/ete-k8s.sh onap health"' RESULT=$? if [ $RESULT -eq 0 ]; then |