Commit 46197a5d authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #33090 from gmarek/kubemarek-timeout

Automatic merge from submit-queue Extend kubemark cluster startup timeout to account for log route crea… Fix #32441 (see https://github.com/kubernetes/kubernetes/issues/32441#issuecomment-248308161) cc @wojtek-t
parents 9b87a1b0 c6ec8085
...@@ -261,8 +261,8 @@ until [[ "${ready}" -ge "${NUM_NODES}" ]]; do ...@@ -261,8 +261,8 @@ until [[ "${ready}" -ge "${NUM_NODES}" ]]; do
echo -n . echo -n .
sleep 1 sleep 1
now=$(date +%s) now=$(date +%s)
# Fail it if it already took more than 15 minutes. # Fail it if it already took more than 30 minutes.
if [ $((now - start)) -gt 900 ]; then if [ $((now - start)) -gt 1800 ]; then
echo "" echo ""
echo "Timeout waiting for all HollowNodes to become Running" echo "Timeout waiting for all HollowNodes to become Running"
# Try listing nodes again - if it fails it means that API server is not responding # Try listing nodes again - if it fails it means that API server is not responding
......
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