From 7714070a745228019fc86e217833b9f24b9062e6 Mon Sep 17 00:00:00 2001 From: John Payne <89417863+jpayne3506@users.noreply.github.com> Date: Fri, 7 Jul 2023 10:06:24 -0700 Subject: [PATCH 1/2] fix: Change Windows Image --- test/integration/manifests/noop-deployment-windows.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/manifests/noop-deployment-windows.yaml b/test/integration/manifests/noop-deployment-windows.yaml index 96619555c9..3b35f044dc 100644 --- a/test/integration/manifests/noop-deployment-windows.yaml +++ b/test/integration/manifests/noop-deployment-windows.yaml @@ -16,7 +16,7 @@ spec: spec: containers: - name: noop - image: mcr.microsoft.com/windows/nanoserver:ltsc2022 + image: mcr.microsoft.com/oss/kubernetes/pause:3.6 ports: - containerPort: 80 nodeSelector: From 0b5da73c9036a8b558aef83195cb84633d295cc5 Mon Sep 17 00:00:00 2001 From: John Payne <89417863+jpayne3506@users.noreply.github.com> Date: Fri, 7 Jul 2023 10:17:03 -0700 Subject: [PATCH 2/2] ci: Informative debug --- test/internal/k8sutils/utils.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/internal/k8sutils/utils.go b/test/internal/k8sutils/utils.go index 95041ca693..4174595751 100644 --- a/test/internal/k8sutils/utils.go +++ b/test/internal/k8sutils/utils.go @@ -246,6 +246,8 @@ func WaitForPodDeployment(ctx context.Context, clientset *kubernetes.Clientset, } if deployment.Status.AvailableReplicas != int32(replicas) { + // Provide real-time deployment availability to console + log.Printf("deployment %s has %d replicas in available status, expected %d", deploymentName, deployment.Status.AvailableReplicas, replicas) return errors.New("deployment does not have the expected number of available replicas") }