diff --git a/test/conformance/testdata/conformance.yaml b/test/conformance/testdata/conformance.yaml index c1375023dc8..3940b83f284 100755 --- a/test/conformance/testdata/conformance.yaml +++ b/test/conformance/testdata/conformance.yaml @@ -2018,6 +2018,15 @@ description: A conformant Kubernetes distribution MUST support DaemonSet RollingUpdates. release: v1.10 file: test/e2e/apps/daemon_set.go +- testname: Deployment, completes the scaling of a Deployment subresource + codename: '[sig-apps] Deployment Deployment should have a working scale subresource + [Conformance]' + description: Create a Deployment with a single Pod. The Pod MUST be verified that + it is running. The Deployment MUST get and verify the scale subresource count. + The Deployment MUST update and verify the scale subresource. The Deployment MUST + patch and verify a scale subresource. + release: v1.21 + file: test/e2e/apps/deployment.go - testname: Deployment Recreate codename: '[sig-apps] Deployment RecreateDeployment should delete old pods and create new ones [Conformance]' diff --git a/test/e2e/apps/deployment.go b/test/e2e/apps/deployment.go index ca46f9dacf2..0add8006f16 100644 --- a/test/e2e/apps/deployment.go +++ b/test/e2e/apps/deployment.go @@ -133,7 +133,16 @@ var _ = SIGDescribe("Deployment", func() { ginkgo.It("test Deployment ReplicaSet orphaning and adoption regarding controllerRef", func() { testDeploymentsControllerRef(f) }) - ginkgo.It("Deployment should have a working scale subresource", func() { + + /* + Release: v1.21 + Testname: Deployment, completes the scaling of a Deployment subresource + Description: Create a Deployment with a single Pod. The Pod MUST be verified + that it is running. The Deployment MUST get and verify the scale subresource count. + The Deployment MUST update and verify the scale subresource. The Deployment MUST patch and verify + a scale subresource. + */ + framework.ConformanceIt("Deployment should have a working scale subresource", func() { testDeploymentSubresources(f) }) /*