mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-24 20:24:09 +00:00
Merge pull request #102347 from ii/promote-replicaset-list-deletecollection
Promote Replicaset list and deleteCollection e2e test to Conformance +2 endpoints
This commit is contained in:
commit
100e993141
8
test/conformance/testdata/conformance.yaml
vendored
8
test/conformance/testdata/conformance.yaml
vendored
@ -779,6 +779,14 @@
|
|||||||
owner references
|
owner references
|
||||||
release: v1.13
|
release: v1.13
|
||||||
file: test/e2e/apps/replica_set.go
|
file: test/e2e/apps/replica_set.go
|
||||||
|
- testname: ReplicaSet, list and delete a collection of ReplicaSets
|
||||||
|
codename: '[sig-apps] ReplicaSet should list and delete a collection of ReplicaSets
|
||||||
|
[Conformance]'
|
||||||
|
description: When a ReplicaSet is created it MUST succeed. It MUST succeed when
|
||||||
|
listing ReplicaSets via a label selector. It MUST succeed when deleting the ReplicaSet
|
||||||
|
via deleteCollection.
|
||||||
|
release: v1.22
|
||||||
|
file: test/e2e/apps/replica_set.go
|
||||||
- testname: Replica Set, run basic image
|
- testname: Replica Set, run basic image
|
||||||
codename: '[sig-apps] ReplicaSet should serve a basic image on each replica with
|
codename: '[sig-apps] ReplicaSet should serve a basic image on each replica with
|
||||||
a public image [Conformance]'
|
a public image [Conformance]'
|
||||||
|
@ -153,7 +153,14 @@ var _ = SIGDescribe("ReplicaSet", func() {
|
|||||||
testRSLifeCycle(f)
|
testRSLifeCycle(f)
|
||||||
})
|
})
|
||||||
|
|
||||||
ginkgo.It("should list and delete a collection of ReplicaSets", func() {
|
/*
|
||||||
|
Release: v1.22
|
||||||
|
Testname: ReplicaSet, list and delete a collection of ReplicaSets
|
||||||
|
Description: When a ReplicaSet is created it MUST succeed. It
|
||||||
|
MUST succeed when listing ReplicaSets via a label selector. It
|
||||||
|
MUST succeed when deleting the ReplicaSet via deleteCollection.
|
||||||
|
*/
|
||||||
|
framework.ConformanceIt("should list and delete a collection of ReplicaSets", func() {
|
||||||
listRSDeleteCollection(f)
|
listRSDeleteCollection(f)
|
||||||
|
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user