mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-23 19:56:01 +00:00
Merge pull request #90941 from ii/ii-promote-configmap-lifecycle
Promote: ConfigMap Lifecycle test - +2 conformance endpoint coverage
This commit is contained in:
commit
8c300565c2
8
test/conformance/testdata/conformance.yaml
vendored
8
test/conformance/testdata/conformance.yaml
vendored
@ -1843,6 +1843,14 @@
|
|||||||
fail.
|
fail.
|
||||||
release: v1.14
|
release: v1.14
|
||||||
file: test/e2e/common/configmap.go
|
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
|
- testname: DownwardAPI, environment for CPU and memory limits and requests
|
||||||
codename: '[sig-node] Downward API should provide container''s limits.cpu/memory
|
codename: '[sig-node] Downward API should provide container''s limits.cpu/memory
|
||||||
and requests.cpu/memory as env vars [NodeConformance] [Conformance]'
|
and requests.cpu/memory as env vars [NodeConformance] [Conformance]'
|
||||||
|
@ -157,7 +157,13 @@ var _ = ginkgo.Describe("[sig-node] ConfigMap", func() {
|
|||||||
framework.ExpectEqual(configMapFromUpdate.Data, configMap.Data)
|
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
|
testNamespaceName := f.Namespace.Name
|
||||||
testConfigMapName := "test-configmap" + string(uuid.NewUUID())
|
testConfigMapName := "test-configmap" + string(uuid.NewUUID())
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user