From 6e574cabdd03c351e813299ac4238fe1e9fa22b5 Mon Sep 17 00:00:00 2001 From: rbiamru Date: Wed, 1 Oct 2025 21:54:21 -0400 Subject: [PATCH] test/e2e_node: mark MirrorPod update tests as [NodeConformance] --- test/e2e_node/mirror_pod_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/e2e_node/mirror_pod_test.go b/test/e2e_node/mirror_pod_test.go index efd2b3f94a8..60f8141abc5 100644 --- a/test/e2e_node/mirror_pod_test.go +++ b/test/e2e_node/mirror_pod_test.go @@ -300,7 +300,7 @@ var _ = SIGDescribe("MirrorPod (Pod Generation)", func() { }, 2*time.Minute, time.Second*4).Should(gomega.Succeed()) }) - f.It("mirror pod: update activeDeadlineSeconds", func(ctx context.Context) { + f.It("mirror pod: update activeDeadlineSeconds", f.WithNodeConformance(), func(ctx context.Context) { ginkgo.By("get mirror pod uid") pod, err := f.ClientSet.CoreV1().Pods(ns).Get(ctx, mirrorPodName, metav1.GetOptions{}) framework.ExpectNoError(err) @@ -323,7 +323,7 @@ var _ = SIGDescribe("MirrorPod (Pod Generation)", func() { gomega.Expect(pod.Status.ObservedGeneration).To(gomega.BeEquivalentTo(int64(0))) }) - f.It("mirror pod: update container image", func(ctx context.Context) { + f.It("mirror pod: update container image", f.WithNodeConformance(), func(ctx context.Context) { ginkgo.By("get mirror pod uid") pod, err := f.ClientSet.CoreV1().Pods(ns).Get(ctx, mirrorPodName, metav1.GetOptions{}) framework.ExpectNoError(err) @@ -346,7 +346,7 @@ var _ = SIGDescribe("MirrorPod (Pod Generation)", func() { gomega.Expect(pod.Status.ObservedGeneration).To(gomega.BeEquivalentTo(int64(0))) }) - f.It("mirror pod: update initContainer image", func(ctx context.Context) { + f.It("mirror pod: update initContainer image", f.WithNodeConformance(), func(ctx context.Context) { ginkgo.By("get mirror pod uid") pod, err := f.ClientSet.CoreV1().Pods(ns).Get(ctx, mirrorPodName, metav1.GetOptions{}) framework.ExpectNoError(err)