From 0cd491deb8087f5f7a6f7811b90c017ea89cdd87 Mon Sep 17 00:00:00 2001 From: David Boreham Date: Fri, 16 Feb 2024 16:15:02 -0700 Subject: [PATCH] Fix lint error --- stack_orchestrator/deploy/k8s/helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stack_orchestrator/deploy/k8s/helpers.py b/stack_orchestrator/deploy/k8s/helpers.py index daa85cad..4814fe5c 100644 --- a/stack_orchestrator/deploy/k8s/helpers.py +++ b/stack_orchestrator/deploy/k8s/helpers.py @@ -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")