Skip to content

Commit

Permalink
AWS kube-up: Increase timeout waiting for docker start
Browse files Browse the repository at this point in the history
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
  • Loading branch information
justinsb committed May 10, 2016
1 parent ff339c7 commit cc4ac54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cluster/aws/util.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit cc4ac54

Please sign in to comment.