diff --git a/test/conformance/testdata/conformance.txt b/test/conformance/testdata/conformance.txt index 944bd726f69..bbcbae6e497 100755 --- a/test/conformance/testdata/conformance.txt +++ b/test/conformance/testdata/conformance.txt @@ -40,6 +40,7 @@ test/e2e/common/configmap_volume.go: "should be consumable from pods in volume w test/e2e/common/configmap_volume.go: "should be consumable from pods in volume with mappings and Item mode set" test/e2e/common/configmap_volume.go: "should be consumable from pods in volume with mappings as non-root" test/e2e/common/configmap_volume.go: "updates should be reflected in volume" +test/e2e/common/configmap_volume.go: "binary data should be reflected in volume" test/e2e/common/configmap_volume.go: "optional updates should be reflected in volume" test/e2e/common/configmap_volume.go: "should be consumable in multiple volumes in the same pod" test/e2e/common/container_probe.go: "with readiness probe should not be ready before initial delay and never restart" diff --git a/test/e2e/common/configmap_volume.go b/test/e2e/common/configmap_volume.go index 81b98d95748..a56cf74ccaa 100644 --- a/test/e2e/common/configmap_volume.go +++ b/test/e2e/common/configmap_volume.go @@ -185,7 +185,12 @@ var _ = Describe("[sig-storage] ConfigMap", func() { Eventually(pollLogs, podLogTimeout, framework.Poll).Should(ContainSubstring("value-2")) }) - It("binary data should be reflected in volume [NodeConformance]", func() { + /* + Release: v1.12 + Testname: ConfigMap Volume, text data, binary data + Description: The ConfigMap that is created with text data and binary data MUST be accessible to read from the newly created Pod using the volume mount that is mapped to custom path in the Pod. ConfigMap's text data and binary data MUST be verified by reading the content from the mounted files in the Pod. + */ + framework.ConformanceIt("binary data should be reflected in volume [NodeConformance]", func() { podLogTimeout := framework.GetPodSecretUpdateTimeout(f.ClientSet) containerTimeoutArg := fmt.Sprintf("--retry_time=%v", int(podLogTimeout.Seconds()))