Commit 02ee27c1 authored by Tim Hockin's avatar Tim Hockin

Merge pull request #459 from rrreeeyyy/fix-kubeup-curl-timeout

Fix: cluster/kube-up.sh curl timeout a little bit short.
parents 3b6f2017 665a4254
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment