Merge pull request #113059 from ii/promote-replication-controller-scale-test

Promote Read, Replace ReplicationController scale endpoints Conformance - +2 Endpoints
This commit is contained in:
Kubernetes Prow Robot 2022-10-13 19:04:46 -07:00 committed by GitHub
commit be5ed7bd12
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 1 deletions

View File

@ -903,6 +903,14 @@
Pod or delete and replace it with a new Pod Pod or delete and replace it with a new Pod
release: v1.13 release: v1.13
file: test/e2e/apps/rc.go file: test/e2e/apps/rc.go
- testname: Replication Controller, get and update ReplicationController scale
codename: '[sig-apps] ReplicationController should get and update a ReplicationController
scale [Conformance]'
description: A ReplicationController is created which MUST succeed. It MUST succeed
when reading the ReplicationController scale. When updating the ReplicationController
scale it MUST succeed and the field MUST equal the new value.
release: v1.26
file: test/e2e/apps/rc.go
- testname: Replication Controller, release pods - testname: Replication Controller, release pods
codename: '[sig-apps] ReplicationController should release no longer matching pods codename: '[sig-apps] ReplicationController should release no longer matching pods
[Conformance]' [Conformance]'

View File

@ -392,7 +392,14 @@ var _ = SIGDescribe("ReplicationController", func() {
}) })
}) })
ginkgo.It("should get and update a ReplicationController scale", func() { /*
Release: v1.26
Testname: Replication Controller, get and update ReplicationController scale
Description: A ReplicationController is created which MUST succeed. It MUST
succeed when reading the ReplicationController scale. When updating the
ReplicationController scale it MUST succeed and the field MUST equal the new value.
*/
framework.ConformanceIt("should get and update a ReplicationController scale", func() {
rcClient := f.ClientSet.CoreV1().ReplicationControllers(ns) rcClient := f.ClientSet.CoreV1().ReplicationControllers(ns)
rcName := "e2e-rc-" + utilrand.String(5) rcName := "e2e-rc-" + utilrand.String(5)
initialRCReplicaCount := int32(1) initialRCReplicaCount := int32(1)