Skip to content

Commit 5d1192b

Browse files
committed
Temporary debug logs
1 parent e4caf78 commit 5d1192b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/framework/resourcemanager.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -361,9 +361,11 @@ func (rm *ResourceManager) WaitForPodsToBeReady(ctx context.Context, namespace s
361361
if err := rm.K8sClient.List(ctx, &podList, client.InNamespace(namespace)); err != nil {
362362
return false, err
363363
}
364+
fmt.Println("POD LIST ", podList.Items)
364365

365366
var podsReady int
366367
for _, pod := range podList.Items {
368+
fmt.Println("POD STATUS ", pod.Name, pod.Status)
367369
for _, cond := range pod.Status.Conditions {
368370
if cond.Type == core.PodReady && cond.Status == core.ConditionTrue {
369371
podsReady++

0 commit comments

Comments
 (0)