Skip to content

Commit 1f08095

Browse files
committed
Add logs
Signed-off-by: Anton Troshin <[email protected]>
1 parent 002a223 commit 1f08095

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/e2e/common/common.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1181,8 +1181,10 @@ func waitAllPodsRunning(t *testing.T, namespace string, haEnabled bool, done, po
11811181
Limit: 100,
11821182
})
11831183
require.NoError(t, err, "error getting pods list from k8s")
1184+
t.Logf("items %d", len(list.Items))
11841185
countOfReadyPods := 0
11851186
for _, item := range list.Items {
1187+
t.Log(item.ObjectMeta.Name)
11861188
// Check pods running, and containers ready.
11871189
if item.Status.Phase == core_v1.PodRunning && len(item.Status.ContainerStatuses) != 0 {
11881190
size := len(item.Status.ContainerStatuses)

0 commit comments

Comments
 (0)