Merge pull request #99282 from ii/Promote-ReplicaSetScale-Test

Promote Read, Replace and Patch ReplicaSetScale test to Conformance +3 endpoints
This commit is contained in:
Kubernetes Prow Robot 2021-02-23 15:23:19 -08:00 committed by GitHub
commit 462dbc17aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 1 deletions

View File

@ -2109,6 +2109,15 @@
the Job MUST execute to completion.
release: v1.16
file: test/e2e/apps/job.go
- testname: ReplicaSet, completes the scaling of a ReplicaSet subresource
codename: '[sig-apps] ReplicaSet Replicaset should have a working scale subresource
[Conformance]'
description: Create a ReplicaSet (RS) with a single Pod. The Pod MUST be verified
that it is running. The RS MUST get and verify the scale subresource count. The
RS MUST update and verify the scale subresource. The RS MUST patch and verify
a scale subresource.
release: v1.21
file: test/e2e/apps/replica_set.go
- testname: Replica Set, adopt matching pods and release non matching pods
codename: '[sig-apps] ReplicaSet should adopt matching pods on creation and release
no longer matching pods [Conformance]'

View File

@ -119,7 +119,15 @@ var _ = SIGDescribe("ReplicaSet", func() {
testRSAdoptMatchingAndReleaseNotMatching(f)
})
ginkgo.It("Replicaset should have a working scale subresource", func() {
/*
Release: v1.21
Testname: ReplicaSet, completes the scaling of a ReplicaSet subresource
Description: Create a ReplicaSet (RS) with a single Pod. The Pod MUST be verified
that it is running. The RS MUST get and verify the scale subresource count.
The RS MUST update and verify the scale subresource. The RS MUST patch and verify
a scale subresource.
*/
framework.ConformanceIt("Replicaset should have a working scale subresource", func() {
testRSScaleSubresources(f)
})
})