Merge pull request #95713 from ii/promote-replicationcontroller

Promote ReplicationController lifecycle test - +7 endpoint coverage
This commit is contained in:
Kubernetes Prow Robot 2020-10-22 22:16:58 -07:00 committed by GitHub
commit 43747b55f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 1 deletions

View File

@ -1260,6 +1260,13 @@
namespace quota. The creation MUST fail namespace quota. The creation MUST fail
release: v1.15 release: v1.15
file: test/e2e/apps/rc.go file: test/e2e/apps/rc.go
- testname: Replication Controller, lifecycle
codename: '[sig-apps] ReplicationController should test the lifecycle of a ReplicationController
[Conformance]'
description: A Replication Controller (RC) is created, read, patched, and deleted
with verification.
release: v1.20
file: test/e2e/apps/rc.go
- testname: StatefulSet, Burst Scaling - testname: StatefulSet, Burst Scaling
codename: '[sig-apps] StatefulSet [k8s.io] Basic StatefulSet functionality [StatefulSetBasic] codename: '[sig-apps] StatefulSet [k8s.io] Basic StatefulSet functionality [StatefulSetBasic]
Burst scaling should run to completion even with unhealthy pods [Slow] [Conformance]' Burst scaling should run to completion even with unhealthy pods [Slow] [Conformance]'

View File

@ -99,7 +99,12 @@ var _ = SIGDescribe("ReplicationController", func() {
testRCReleaseControlledNotMatching(f) testRCReleaseControlledNotMatching(f)
}) })
ginkgo.It("[Flaky] should test the lifecycle of a ReplicationController", func() { /*
Release: v1.20
Testname: Replication Controller, lifecycle
Description: A Replication Controller (RC) is created, read, patched, and deleted with verification.
*/
framework.ConformanceIt("should test the lifecycle of a ReplicationController", func() {
testRcName := "rc-test" testRcName := "rc-test"
testRcNamespace := ns testRcNamespace := ns
testRcInitialReplicaCount := int32(1) testRcInitialReplicaCount := int32(1)