Skip to content

Commit 44cd9d3

Browse files
committed
Promote delete collection pods e2e test to conformance
1 parent 99d85ef commit 44cd9d3

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
@@ -259,6 +259,13 @@
259259
and FOOSERVICE_PORT_8765_TCP_ADDR that are populated with proper values.
260260
release: v1.9
261261
file: test/e2e/common/pods.go
262+
- testname: Pods, delete a collection
263+
codename: '[k8s.io] Pods should delete a collection of pods [Conformance]'
264+
description: A set of pods is created with a label selector which MUST be found
265+
when listed. The set of pods is deleted and MUST NOT show up when listed by its
266+
label selector.
267+
release: v1.19
268+
file: test/e2e/common/pods.go
262269
- testname: Pods, assigned hostip
263270
codename: '[k8s.io] Pods should get a host IP [NodeConformance] [Conformance]'
264271
description: Create a Pod. Pod status MUST return successfully and contains a valid

test/e2e/common/pods.go

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -832,7 +832,13 @@ var _ = framework.KubeDescribe("Pods", func() {
832832

833833
})
834834

835-
ginkgo.It("should delete a collection of pods", func() {
835+
/*
836+
Release : v1.19
837+
Testname: Pods, delete a collection
838+
Description: A set of pods is created with a label selector which MUST be found when listed.
839+
The set of pods is deleted and MUST NOT show up when listed by its label selector.
840+
*/
841+
framework.ConformanceIt("should delete a collection of pods", func() {
836842
podTestNames := []string{"test-pod-1", "test-pod-2", "test-pod-3"}
837843

838844
ginkgo.By("Create set of pods")

0 commit comments

Comments
 (0)