From 80b8414d3d1e5d2838ce5f3cc837e380312c5ca9 Mon Sep 17 00:00:00 2001 From: miampf Date: Fri, 6 Dec 2024 12:39:12 +0100 Subject: [PATCH] debug print --- e2e/aks-runtime/aks_runtime_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/e2e/aks-runtime/aks_runtime_test.go b/e2e/aks-runtime/aks_runtime_test.go index 4ec8f3a5d..5a8f27c8c 100644 --- a/e2e/aks-runtime/aks_runtime_test.go +++ b/e2e/aks-runtime/aks_runtime_test.go @@ -107,6 +107,7 @@ func TestAKSRuntime(t *testing.T) { require.NoError(c.WaitFor(ctx, kubeclient.Ready, kubeclient.Deployment{}, namespace, testContainer)) pods, err := c.Client.CoreV1().Pods(namespace).List(ctx, metav1.ListOptions{}) + t.Logf("pods: %#v", pods) require.NoError(err) require.Len(pods.Items, 1) pod := pods.Items[0] // only one pod was deployed