From 180ce027e8f8b7f15e073f704a0778201897b0e3 Mon Sep 17 00:00:00 2001 From: Caleb Woodbine Date: Tue, 9 Jul 2019 22:11:20 +0000 Subject: [PATCH] Promote pod autoscaling --- test/conformance/testdata/conformance.txt | 1 + test/e2e/autoscaling/horizontal_pod_autoscaling.go | 8 +++++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/test/conformance/testdata/conformance.txt b/test/conformance/testdata/conformance.txt index 7f5af238663..47ca8477cce 100644 --- a/test/conformance/testdata/conformance.txt +++ b/test/conformance/testdata/conformance.txt @@ -38,6 +38,7 @@ test/e2e/apps/statefulset.go: "Burst scaling should run to completion even with test/e2e/apps/statefulset.go: "Should recreate evicted statefulset" test/e2e/auth/service_accounts.go: "should mount an API token into pods" test/e2e/auth/service_accounts.go: "should allow opting out of API token automount" +test/e2e/autoscaling/horizontal_pod_autoscaling.go: "Should scale from 1 pod to 2 pods" test/e2e/common/configmap.go: "should be consumable via environment variable" test/e2e/common/configmap.go: "should be consumable via the environment" test/e2e/common/configmap.go: "should fail to create ConfigMap with empty key" diff --git a/test/e2e/autoscaling/horizontal_pod_autoscaling.go b/test/e2e/autoscaling/horizontal_pod_autoscaling.go index f244177a46f..177011ae54b 100644 --- a/test/e2e/autoscaling/horizontal_pod_autoscaling.go +++ b/test/e2e/autoscaling/horizontal_pod_autoscaling.go @@ -67,7 +67,13 @@ var _ = SIGDescribe("[HPA] Horizontal pod autoscaling (scale resource: CPU)", fu }) SIGDescribe("ReplicationController light", func() { - ginkgo.It("Should scale from 1 pod to 2 pods", func() { + /* + Release : v1.16 + Testname: Up-scale pod replicas and resources + Description: Pod replicas MUST increase from 1 pod to 2 pods. + Pod CPU request will increase to 50%. + */ + framework.ConformanceIt("Should scale from 1 pod to 2 pods", func() { scaleTest := &HPAScaleTest{ initPods: 1, totalInitialCPUUsage: 150,