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 (kubernetes#23623) and users are reporting that
increasing the timeout fixes the issue (thanks @paralin for the
suggestion and @jlfields for confirming).

Fix kubernetes#23623
  • Loading branch information
justinsb authored and roberthbailey committed May 23, 2016
1 parent 672d5a7 commit fa15d93
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 @@ -1309,7 +1309,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 fa15d93

Please sign in to comment.