From af0878be15f7e9aac32a52feca94f3cd21730226 Mon Sep 17 00:00:00 2001 From: Eoin O'Shaughnessy Date: Mon, 1 Jul 2024 11:57:16 +0100 Subject: [PATCH] missing pod var --- tests/suite/utils/resources_utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/suite/utils/resources_utils.py b/tests/suite/utils/resources_utils.py index 01e46720c4..eea3d3f6c2 100644 --- a/tests/suite/utils/resources_utils.py +++ b/tests/suite/utils/resources_utils.py @@ -298,6 +298,7 @@ def wait_until_all_pods_are_ready(v1: CoreV1Api, namespace) -> None: if counter >= 300: print("\n===================== IC Logs Start =====================") try: + pod_name = get_pod_name_that_contains(kube_apis.v1, "nginx-ingress", "nginx-ingress") logs = kube_apis.v1.read_namespaced_pod_log(pod_name, "nginx-ingress") print(logs) except: