Skip to content

Commit cccb28b

Browse files
authored
Merge pull request kubernetes#92812 from ii/heyste-create-delete-core-v1-collection-namespaced-pod-template-test
Promote DeleteCoreV1CollectionNamespacedPodTemplate test+promote - +1 endpoint
2 parents 42ae200 + 0da98ad commit cccb28b

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
@@ -1880,6 +1880,13 @@
18801880
visible at runtime in the container.
18811881
release: v1.9
18821882
file: test/e2e/common/downward_api.go
1883+
- testname: PodTemplate, delete a collection
1884+
codename: '[sig-node] PodTemplates should delete a collection of pod templates [Conformance]'
1885+
description: A set of Pod Templates is created with a label selector which MUST
1886+
be found when listed. The set of Pod Templates is deleted and MUST NOT show up
1887+
when listed by its label selector.
1888+
release: v1.19
1889+
file: test/e2e/common/podtemplates.go
18831890
- testname: PodTemplate lifecycle
18841891
codename: '[sig-node] PodTemplates should run the lifecycle of PodTemplates [Conformance]'
18851892
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)