From c3fb2c002a571e041afc13564b9f4c22d783aa01 Mon Sep 17 00:00:00 2001 From: Riaan Kleinhans Date: Thu, 4 Mar 2021 13:21:56 +1300 Subject: [PATCH] Promote ReplicaSet e2e test to Conformance --- test/conformance/testdata/conformance.yaml | 7 +++++++ test/e2e/apps/replica_set.go | 9 ++++++++- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/test/conformance/testdata/conformance.yaml b/test/conformance/testdata/conformance.yaml index 4fd3f768890..6ae45bfd557 100755 --- a/test/conformance/testdata/conformance.yaml +++ b/test/conformance/testdata/conformance.yaml @@ -704,6 +704,13 @@ the Job MUST execute to completion. release: v1.16 file: test/e2e/apps/job.go +- testname: ReplicaSet, is created, Replaced and Patched + codename: '[sig-apps] ReplicaSet Replace and Patch tests [Conformance]' + description: Create a ReplicaSet (RS) with a single Pod. The Pod MUST be verified + that it is running. The RS MUST scale to two replicas and verify the scale count + The RS MUST be patched and verify that patch succeeded. + release: v1.21 + file: test/e2e/apps/replica_set.go - testname: ReplicaSet, completes the scaling of a ReplicaSet subresource codename: '[sig-apps] ReplicaSet Replicaset should have a working scale subresource [Conformance]' diff --git a/test/e2e/apps/replica_set.go b/test/e2e/apps/replica_set.go index 5b7d119336b..4d99b584f41 100644 --- a/test/e2e/apps/replica_set.go +++ b/test/e2e/apps/replica_set.go @@ -131,7 +131,14 @@ var _ = SIGDescribe("ReplicaSet", func() { testRSScaleSubresources(f) }) - ginkgo.It("ReplicaSet Replace and Patch tests", func() { + /* + Release: v1.21 + Testname: ReplicaSet, is created, Replaced and Patched + Description: Create a ReplicaSet (RS) with a single Pod. The Pod MUST be verified + that it is running. The RS MUST scale to two replicas and verify the scale count + The RS MUST be patched and verify that patch succeeded. + */ + framework.ConformanceIt("Replace and Patch tests", func() { testRSLifeCycle(f) }) })