Merge pull request #93086 from ii/heyste-create-delete-core-v1-collection-namespaced-pod-test

Promote Delete Collection Pods e2e test to conformance +1 endpoint coverage
This commit is contained in:
Kubernetes Prow Robot 2020-07-28 19:25:48 -07:00 committed by GitHub
commit 5ca6d567c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 1 deletions

View File

@ -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

View File

@ -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)