Promote DeploymentScale e2e test to Conformance

This commit is contained in:
Riaan Kleinhans 2021-02-19 13:13:29 +13:00
parent 033d950152
commit 303fd4aca2
2 changed files with 19 additions and 1 deletions

View File

@ -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]'

View File

@ -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)
})
/*