Merge pull request #90941 from ii/ii-promote-configmap-lifecycle

Promote: ConfigMap Lifecycle test - +2 conformance endpoint coverage
This commit is contained in:
Kubernetes Prow Robot 2020-07-15 15:28:48 -07:00 committed by GitHub
commit 8c300565c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 1 deletions

View File

@ -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]'

View File

@ -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())