mirror of https://github.com/knative/func.git
Increase service wait timeout (#1043)
Signed-off-by: Matej Vasek <mvasek@redhat.com>
This commit is contained in:
parent
afe8a959ca
commit
c592cd2a41
|
@ -47,11 +47,11 @@ EOF
|
||||||
# Sleep to avoid a racing condition where `kubectl wait` below will fail
|
# Sleep to avoid a racing condition where `kubectl wait` below will fail
|
||||||
# immediately that the "echo" route is not found and can thus not be waited
|
# immediately that the "echo" route is not found and can thus not be waited
|
||||||
# upon to complete.
|
# upon to complete.
|
||||||
sleep 30
|
sleep 60
|
||||||
|
|
||||||
# Wait for the test to become available
|
# Wait for the test to become available
|
||||||
echo "${em} Waiting for echo route${me}"
|
echo "${em} Waiting for echo route${me}"
|
||||||
kubectl wait --for=condition=Ready route echo -n func --timeout=120s
|
kubectl wait --for=condition=Ready route echo -n func --timeout=600s
|
||||||
|
|
||||||
echo "${em} Invoking echo server${me}"
|
echo "${em} Invoking echo server${me}"
|
||||||
curl http://echo.func.127.0.0.1.sslip.io/
|
curl http://echo.func.127.0.0.1.sslip.io/
|
||||||
|
|
Loading…
Reference in New Issue