Skip to content

Commit 8c30056

Browse files
authored
Merge pull request kubernetes#90941 from ii/ii-promote-configmap-lifecycle
Promote: ConfigMap Lifecycle test - +2 conformance endpoint coverage
2 parents 4b2cb07 + 9520a87 commit 8c30056

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

test/conformance/testdata/conformance.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1843,6 +1843,14 @@
18431843
fail.
18441844
release: v1.14
18451845
file: test/e2e/common/configmap.go
1846+
- testname: ConfigMap lifecycle
1847+
codename: '[sig-node] ConfigMap should run through a ConfigMap lifecycle [Conformance]'
1848+
description: Attempt to create a ConfigMap. Patch the created ConfigMap. Fetching
1849+
the ConfigMap MUST reflect changes. By fetching all the ConfigMaps via a Label
1850+
selector it MUST find the ConfigMap by it's static label and updated value. The
1851+
ConfigMap must be deleted by Collection.
1852+
release: v1.19
1853+
file: test/e2e/common/configmap.go
18461854
- testname: DownwardAPI, environment for CPU and memory limits and requests
18471855
codename: '[sig-node] Downward API should provide container''s limits.cpu/memory
18481856
and requests.cpu/memory as env vars [NodeConformance] [Conformance]'

test/e2e/common/configmap.go

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,13 @@ var _ = ginkgo.Describe("[sig-node] ConfigMap", func() {
157157
framework.ExpectEqual(configMapFromUpdate.Data, configMap.Data)
158158
})
159159

160-
ginkgo.It("should run through a ConfigMap lifecycle", func() {
160+
/*
161+
Release : v1.19
162+
Testname: ConfigMap lifecycle
163+
Description: Attempt to create a ConfigMap. Patch the created ConfigMap. Fetching the ConfigMap MUST reflect changes.
164+
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.
165+
*/
166+
framework.ConformanceIt("should run through a ConfigMap lifecycle", func() {
161167
testNamespaceName := f.Namespace.Name
162168
testConfigMapName := "test-configmap" + string(uuid.NewUUID())
163169

0 commit comments

Comments
 (0)