diff --git a/test/conformance/testdata/conformance.yaml b/test/conformance/testdata/conformance.yaml index d5239a53fbf..24967b63ac0 100755 --- a/test/conformance/testdata/conformance.yaml +++ b/test/conformance/testdata/conformance.yaml @@ -2126,6 +2126,12 @@ ConfigMap must be deleted by Collection. release: v1.19 file: test/e2e/common/node/configmap.go +- testname: ConfigMap Update + codename: '[sig-node] ConfigMap should update ConfigMap successfully [NodeConformance] + [Conformance]' + description: Ensure that a ConfigMap object can be created and then updated successfully. + release: v1.32 + file: test/e2e/common/node/configmap.go - testname: Pod Lifecycle, post start exec hook codename: '[sig-node] Container Lifecycle Hook when create a pod with lifecycle hook should execute poststart exec hook properly [NodeConformance] [Conformance]' diff --git a/test/e2e/common/node/configmap.go b/test/e2e/common/node/configmap.go index 6faafd94f27..aba3e289818 100644 --- a/test/e2e/common/node/configmap.go +++ b/test/e2e/common/node/configmap.go @@ -140,8 +140,12 @@ var _ = SIGDescribe("ConfigMap", func() { configMap, err := newConfigMapWithEmptyKey(ctx, f) 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) { + /* + Release : v1.32 + Testname: ConfigMap Update + Description: Ensure that a ConfigMap object can be created and then updated successfully. + */ + 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))