From 938b23879a2209eb6943f4e8f402124ea070dab3 Mon Sep 17 00:00:00 2001 From: Amruthan Manjula Anandan <157590530+rbiamru@users.noreply.github.com> Date: Mon, 15 Sep 2025 00:01:08 -0400 Subject: [PATCH] test/e2e/node: add [NodeConformance] label to ConfigMap update test --- test/e2e/common/node/configmap.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/common/node/configmap.go b/test/e2e/common/node/configmap.go index 6faafd94f27..0ce9bc1b9a1 100644 --- a/test/e2e/common/node/configmap.go +++ b/test/e2e/common/node/configmap.go @@ -141,7 +141,7 @@ var _ = SIGDescribe("ConfigMap", func() { gomega.Expect(err).To(gomega.HaveOccurred(), "created configMap %q with empty key in namespace %q", configMap.Name, f.Namespace.Name) }) - ginkgo.It("should update ConfigMap successfully", func(ctx context.Context) { + framework.ConformanceIt("should update ConfigMap successfully", f.WithNodeConformance(), func(ctx context.Context) { name := "configmap-test-" + string(uuid.NewUUID()) configMap := newConfigMap(f, name) ginkgo.By(fmt.Sprintf("Creating ConfigMap %v/%v", f.Namespace.Name, configMap.Name))