Skip to content

Commit 0da98ad

Browse files
committed
Promote: PodTemplate delete a collection test
1 parent f38ce57 commit 0da98ad

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

test/conformance/testdata/conformance.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1888,6 +1888,13 @@
18881888
visible at runtime in the container.
18891889
release: v1.9
18901890
file: test/e2e/common/downward_api.go
1891+
- testname: PodTemplate, delete a collection
1892+
codename: '[sig-node] PodTemplates should delete a collection of pod templates [Conformance]'
1893+
description: A set of Pod Templates is created with a label selector which MUST
1894+
be found when listed. The set of Pod Templates is deleted and MUST NOT show up
1895+
when listed by its label selector.
1896+
release: v1.19
1897+
file: test/e2e/common/podtemplates.go
18911898
- testname: PodTemplate lifecycle
18921899
codename: '[sig-node] PodTemplates should run the lifecycle of PodTemplates [Conformance]'
18931900
description: Attempt to create a PodTemplate. Patch the created PodTemplate. Fetching

test/e2e/common/podtemplates.go

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,13 @@ var _ = ginkgo.Describe("[sig-node] PodTemplates", func() {
108108
framework.ExpectEqual(len(podTemplateList.Items), 0, "PodTemplate list returned items, failed to delete PodTemplate")
109109
})
110110

111-
ginkgo.It("should delete a collection of pod templates", func() {
111+
/*
112+
Release : v1.19
113+
Testname: PodTemplate, delete a collection
114+
Description: A set of Pod Templates is created with a label selector which MUST be found when listed.
115+
The set of Pod Templates is deleted and MUST NOT show up when listed by its label selector.
116+
*/
117+
framework.ConformanceIt("should delete a collection of pod templates", func() {
112118
podTemplateNames := []string{"test-podtemplate-1", "test-podtemplate-2", "test-podtemplate-3"}
113119

114120
ginkgo.By("Create set of pod templates")

0 commit comments

Comments
 (0)