From 1f080952a512eb9804e6b385c1b2a5437112d21b Mon Sep 17 00:00:00 2001 From: Anton Troshin Date: Tue, 5 Nov 2024 00:56:45 -0600 Subject: [PATCH] Add logs Signed-off-by: Anton Troshin --- tests/e2e/common/common.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/e2e/common/common.go b/tests/e2e/common/common.go index e5241294..9dd93eed 100644 --- a/tests/e2e/common/common.go +++ b/tests/e2e/common/common.go @@ -1181,8 +1181,10 @@ func waitAllPodsRunning(t *testing.T, namespace string, haEnabled bool, done, po Limit: 100, }) require.NoError(t, err, "error getting pods list from k8s") + t.Logf("items %d", len(list.Items)) countOfReadyPods := 0 for _, item := range list.Items { + t.Log(item.ObjectMeta.Name) // Check pods running, and containers ready. if item.Status.Phase == core_v1.PodRunning && len(item.Status.ContainerStatuses) != 0 { size := len(item.Status.ContainerStatuses)