Merge pull request #99281 from ii/Promote-DeploymentScale-Test

Promote Read, Replace and Patch DeploymentScale test to Conformance +3 endpoints
This commit is contained in:
Kubernetes Prow Robot 2021-02-23 15:23:12 -08:00 committed by GitHub
commit f499d27535
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 1 deletions

View File

@ -2036,6 +2036,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)
})
/*