From 665a4254c296ed3d4eeb86fc6fccf68e173654c3 Mon Sep 17 00:00:00 2001 From: YOSHIKAWA Ryota Date: Tue, 15 Jul 2014 16:58:21 +0900 Subject: [PATCH] Fix: cluster/kube-up.sh curl timeout a little bit short. --- cluster/kube-up.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster/kube-up.sh b/cluster/kube-up.sh index bb5d6223166..b3e799f6640 100755 --- a/cluster/kube-up.sh +++ b/cluster/kube-up.sh @@ -127,7 +127,7 @@ echo " This might loop forever if there was some uncaught error during start" echo " up." echo -until $(curl --insecure --user ${user}:${passwd} --max-time 1 \ +until $(curl --insecure --user ${user}:${passwd} --max-time 5 \ --fail --output /dev/null --silent https://${KUBE_MASTER_IP}/api/v1beta1/pods); do printf "." sleep 2