diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2018-10-16 11:01:07 -0700 |
---|---|---|
committer | Gary Wu <gary.i.wu@huawei.com> | 2018-10-16 11:36:40 -0700 |
commit | b0e3650bd4717fe97a5fcd2e8fa8575bc0aa2e23 (patch) | |
tree | 1d78cb6eed5b66919d59810e422ca3d4f55e66e2 /deployment/heat/onap-oom/scripts/deploy.sh | |
parent | ce82c4ce6aaeb5cb8ea931ee9ad7e0ba47c3efe8 (diff) |
Add retries to handle intermittent network issues
Change-Id: I1fbdbd27b9b480dfafed87b12cdad23e4f3626f6
Issue-ID: INT-586
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 | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/deployment/heat/onap-oom/scripts/deploy.sh b/deployment/heat/onap-oom/scripts/deploy.sh index e97c5a3f5..459af34bc 100755 --- a/deployment/heat/onap-oom/scripts/deploy.sh +++ b/deployment/heat/onap-oom/scripts/deploy.sh @@ -153,12 +153,13 @@ fi ssh-keygen -R $RANCHER_IP +sleep 2m ssh -o StrictHostKeychecking=no -i $SSH_KEY ubuntu@$RANCHER_IP "sed -u '/Cloud-init.*finished/q' <(tail -n+0 -f /var/log/cloud-init-output.log)" -for n in $(seq 1 6); do - echo "Wait count $n of 6" +for n in $(seq 1 8); do + echo "Wait count $n of 8" sleep 15m - timeout 15m ssh -i $SSH_KEY ubuntu@$RANCHER_IP 'sudo su -l root -c "/root/oom/kubernetes/robot/ete-k8s.sh onap health"' + ssh -i $SSH_KEY ubuntu@$RANCHER_IP 'sudo su -l root -c "/root/oom/kubernetes/robot/ete-k8s.sh onap health"' RESULT=$? if [ $RESULT -eq 0 ]; then break |