Increase timeout for CI runners
Some checks failed
Lint Checks / Run linter (pull_request) Successful in 44s
Webapp Test / Run webapp test suite (pull_request) Successful in 4m34s
Deploy Test / Run deploy test suite (pull_request) Successful in 5m27s
Smoke Test / Run basic test suite (pull_request) Successful in 5m37s
K8s Deploy Test / Run deploy test suite on kind/k8s (pull_request) Failing after 9m38s

This commit is contained in:
David Boreham 2024-02-16 16:34:10 -07:00
parent 0cd491deb8
commit 139e1f25b6

View File

@ -51,7 +51,7 @@ def wait_for_ingress_in_kind():
for event in w.stream(func=core_v1.list_namespaced_pod,
namespace="ingress-nginx",
label_selector="app.kubernetes.io/component=controller",
timeout_seconds=120):
timeout_seconds=240):
if event['object'].status.container_statuses:
if event['object'].status.container_statuses[0].ready is True:
return