diff --git a/test/conformance/testdata/conformance.yaml b/test/conformance/testdata/conformance.yaml index d570aa63bbb..5e720bc8235 100755 --- a/test/conformance/testdata/conformance.yaml +++ b/test/conformance/testdata/conformance.yaml @@ -1880,6 +1880,13 @@ visible at runtime in the container. release: v1.9 file: test/e2e/common/downward_api.go +- testname: PodTemplate, delete a collection + codename: '[sig-node] PodTemplates should delete a collection of pod templates [Conformance]' + description: A set of Pod Templates is created with a label selector which MUST + be found when listed. The set of Pod Templates is deleted and MUST NOT show up + when listed by its label selector. + release: v1.19 + file: test/e2e/common/podtemplates.go - testname: PodTemplate lifecycle codename: '[sig-node] PodTemplates should run the lifecycle of PodTemplates [Conformance]' description: Attempt to create a PodTemplate. Patch the created PodTemplate. Fetching diff --git a/test/e2e/common/podtemplates.go b/test/e2e/common/podtemplates.go index 37f45d597fb..4adefe1c184 100644 --- a/test/e2e/common/podtemplates.go +++ b/test/e2e/common/podtemplates.go @@ -108,7 +108,13 @@ var _ = ginkgo.Describe("[sig-node] PodTemplates", func() { framework.ExpectEqual(len(podTemplateList.Items), 0, "PodTemplate list returned items, failed to delete PodTemplate") }) - ginkgo.It("should delete a collection of pod templates", func() { + /* + Release : v1.19 + Testname: PodTemplate, delete a collection + Description: A set of Pod Templates is created with a label selector which MUST be found when listed. + The set of Pod Templates is deleted and MUST NOT show up when listed by its label selector. + */ + framework.ConformanceIt("should delete a collection of pod templates", func() { podTemplateNames := []string{"test-podtemplate-1", "test-podtemplate-2", "test-podtemplate-3"} ginkgo.By("Create set of pod templates")