Support non-tls ingress for kind #748

Merged
dboreham merged 6 commits from dboreham/kind-ingress into main 2024-02-17 01:54:33 +00:00
Showing only changes of commit 0cd491deb8 - Show all commits

View File

@ -53,7 +53,7 @@ def wait_for_ingress_in_kind():
label_selector="app.kubernetes.io/component=controller",
timeout_seconds=120):
if event['object'].status.container_statuses:
if event['object'].status.container_statuses[0].ready == True:
if event['object'].status.container_statuses[0].ready is True:
return
error_exit("ERROR: Timed out waiting for ingress to become ready")