From cc4ac5459c6ebf128ab64084289d567787f3d24c Mon Sep 17 00:00:00 2001 From: Justin Santa Barbara Date: Tue, 10 May 2016 09:06:45 -0400 Subject: [PATCH] AWS kube-up: Increase timeout waiting for docker start Apparently our cluster start time increased, to the point where users are reporting spurious timeouts (#23623) and users are reporting that increasing the timeout fixes the issue (thanks @paralin for the suggestion and @jlfields for confirming). Fix #23623 --- cluster/aws/util.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster/aws/util.sh b/cluster/aws/util.sh index 874088271bb..bbc6cfe2421 100755 --- a/cluster/aws/util.sh +++ b/cluster/aws/util.sh @@ -1322,7 +1322,7 @@ function check-cluster() { local output=`check-minion ${minion_ip}` echo $output if [[ "${output}" != "working" ]]; then - if (( attempt > 9 )); then + if (( attempt > 20 )); then echo echo -e "${color_red}Your cluster is unlikely to work correctly." >&2 echo "Please run ./cluster/kube-down.sh and re-create the" >&2