diff --git a/test/conformance/testdata/conformance.yaml b/test/conformance/testdata/conformance.yaml index b4376c7e533..37493bbca78 100755 --- a/test/conformance/testdata/conformance.yaml +++ b/test/conformance/testdata/conformance.yaml @@ -259,6 +259,13 @@ and FOOSERVICE_PORT_8765_TCP_ADDR that are populated with proper values. release: v1.9 file: test/e2e/common/pods.go +- testname: Pods, delete a collection + codename: '[k8s.io] Pods should delete a collection of pods [Conformance]' + description: A set of pods is created with a label selector which MUST be found + when listed. The set of pods is deleted and MUST NOT show up when listed by its + label selector. + release: v1.19 + file: test/e2e/common/pods.go - testname: Pods, assigned hostip codename: '[k8s.io] Pods should get a host IP [NodeConformance] [Conformance]' description: Create a Pod. Pod status MUST return successfully and contains a valid diff --git a/test/e2e/common/pods.go b/test/e2e/common/pods.go index 2d6e4c42c99..acb9242d3e0 100644 --- a/test/e2e/common/pods.go +++ b/test/e2e/common/pods.go @@ -832,7 +832,13 @@ var _ = framework.KubeDescribe("Pods", func() { }) - ginkgo.It("should delete a collection of pods", func() { + /* + Release : v1.19 + Testname: Pods, delete a collection + Description: A set of pods is created with a label selector which MUST be found when listed. + The set of pods is deleted and MUST NOT show up when listed by its label selector. + */ + framework.ConformanceIt("should delete a collection of pods", func() { podTestNames := []string{"test-pod-1", "test-pod-2", "test-pod-3"} zero := int64(0)