diff --git a/test/conformance/testdata/conformance.yaml b/test/conformance/testdata/conformance.yaml index 5e720bc8235..c12a66b0f07 100755 --- a/test/conformance/testdata/conformance.yaml +++ b/test/conformance/testdata/conformance.yaml @@ -1843,6 +1843,14 @@ fail. release: v1.14 file: test/e2e/common/configmap.go +- testname: ConfigMap lifecycle + codename: '[sig-node] ConfigMap should run through a ConfigMap lifecycle [Conformance]' + description: Attempt to create a ConfigMap. Patch the created ConfigMap. Fetching + the ConfigMap MUST reflect changes. By fetching all the ConfigMaps via a Label + selector it MUST find the ConfigMap by it's static label and updated value. The + ConfigMap must be deleted by Collection. + release: v1.19 + file: test/e2e/common/configmap.go - testname: DownwardAPI, environment for CPU and memory limits and requests codename: '[sig-node] Downward API should provide container''s limits.cpu/memory and requests.cpu/memory as env vars [NodeConformance] [Conformance]' diff --git a/test/e2e/common/configmap.go b/test/e2e/common/configmap.go index 06d8e5e9310..64a479709af 100644 --- a/test/e2e/common/configmap.go +++ b/test/e2e/common/configmap.go @@ -157,7 +157,13 @@ var _ = ginkgo.Describe("[sig-node] ConfigMap", func() { framework.ExpectEqual(configMapFromUpdate.Data, configMap.Data) }) - ginkgo.It("should run through a ConfigMap lifecycle", func() { + /* + Release : v1.19 + Testname: ConfigMap lifecycle + Description: Attempt to create a ConfigMap. Patch the created ConfigMap. Fetching the ConfigMap MUST reflect changes. + By fetching all the ConfigMaps via a Label selector it MUST find the ConfigMap by it's static label and updated value. The ConfigMap must be deleted by Collection. + */ + framework.ConformanceIt("should run through a ConfigMap lifecycle", func() { testNamespaceName := f.Namespace.Name testConfigMapName := "test-configmap" + string(uuid.NewUUID())