From 0b6994e85dfb3d12b45e850431a43dfd0a4f888a Mon Sep 17 00:00:00 2001 From: Caleb Woodbine Date: Wed, 12 Feb 2020 08:58:34 +1300 Subject: [PATCH] Promote: ConfigMap Lifecycle test --- test/e2e/common/configmap.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/e2e/common/configmap.go b/test/e2e/common/configmap.go index 93311c5ee3d..89de68e5c22 100644 --- a/test/e2e/common/configmap.go +++ b/test/e2e/common/configmap.go @@ -168,6 +168,12 @@ var _ = ginkgo.Describe("[sig-node] ConfigMap", func() { framework.ExpectEqual(configMapFromUpdate.Data, configMap.Data) }) + /* + Release : v1.18 + 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. + */ ginkgo.It("should run through a ConfigMap lifecycle", func() { testNamespaceName := f.Namespace.Name testConfigMapName := "test-configmap" + string(uuid.NewUUID())