Promote ReplicaSet Status e2e test to Conformance

This commit is contained in:
Stephen Heywood 2021-05-26 15:10:46 +12:00
parent 91200bac44
commit f7d02f4d25
2 changed files with 14 additions and 1 deletions

View File

@ -786,6 +786,13 @@
the Pod is running. Pod SHOULD send a valid response when queried.
release: v1.9
file: test/e2e/apps/replica_set.go
- testname: ReplicaSet, status sub-resource
codename: '[sig-apps] ReplicaSet should validate Replicaset Status endpoints [Conformance]'
description: Create a ReplicaSet resource which MUST succeed. Attempt to read, update
and patch its status sub-resource; all mutating sub-resource operations MUST be
visible to subsequent reads.
release: v1.22
file: test/e2e/apps/replica_set.go
- testname: Replication Controller, adopt matching pods
codename: '[sig-apps] ReplicationController should adopt matching pods on creation
[Conformance]'

View File

@ -158,7 +158,13 @@ var _ = SIGDescribe("ReplicaSet", func() {
})
ginkgo.It("should validate Replicaset Status endpoints", func() {
/* Release: v1.22
Testname: ReplicaSet, status sub-resource
Description: Create a ReplicaSet resource which MUST succeed.
Attempt to read, update and patch its status sub-resource; all
mutating sub-resource operations MUST be visible to subsequent reads.
*/
framework.ConformanceIt("should validate Replicaset Status endpoints", func() {
testRSStatus(f)
})
})