diff --git a/hack/lib/util.sh b/hack/lib/util.sh index 6be0cebc949..41b7a7222e5 100755 --- a/hack/lib/util.sh +++ b/hack/lib/util.sh @@ -32,7 +32,7 @@ kube::util::wait_for_url() { local i for i in $(seq 1 $times); do local out - if out=$(curl -fs $url 2>/dev/null); then + if out=$(curl -gfs $url 2>/dev/null); then kube::log::status "On try ${i}, ${prefix}: ${out}" return 0 fi