Promote ReplicationController scale e2e test to Conformance

This commit is contained in:
Stephen Heywood 2022-10-10 10:58:30 +13:00
parent a5481453f7
commit 84c02e370c
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
release: v1.13
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
codename: '[sig-apps] ReplicationController should release no longer matching pods
[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)
rcName := "e2e-rc-" + utilrand.String(5)
initialRCReplicaCount := int32(1)