diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2018-04-19 07:55:59 -0700 |
---|---|---|
committer | Gary Wu <gary.i.wu@huawei.com> | 2018-04-19 07:55:59 -0700 |
commit | 586e36abcc2c5fa1383b05504a21e2d1425cb41f (patch) | |
tree | f7d8fecd44ddc768b79011adf3711bca6b178ce4 /deployment/heat/onap-oom/scripts/deploy.sh | |
parent | aedcf8ed19f09c8c7e7731864a53121cf565e052 (diff) |
Increase timeout for OOM health check
Change-Id: Iaec04c20ab8d37480ec597f21cb4b4231cd3b4ec
Issue-ID: INT-403
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 c81e65c8b..c49239403 100755 --- a/deployment/heat/onap-oom/scripts/deploy.sh +++ b/deployment/heat/onap-oom/scripts/deploy.sh @@ -38,7 +38,7 @@ fi ssh-keygen -R $K8S_IP for n in $(seq 1 10); do - timeout 2m ssh -o StrictHostKeychecking=no -i ~/.ssh/onap_key ubuntu@$K8S_IP 'sudo su -l root -c "/root/oom/kubernetes/robot/ete-k8s.sh onap health"' + timeout 15m ssh -o StrictHostKeychecking=no -i ~/.ssh/onap_key ubuntu@$K8S_IP 'sudo su -l root -c "/root/oom/kubernetes/robot/ete-k8s.sh onap health"' RESULT=$? if [ $RESULT -eq 0 ]; then break |