From e278577f3b6c587d4161c6ca8016ad77b7a7f28d Mon Sep 17 00:00:00 2001 From: Jeff Lowdermilk Date: Thu, 5 Nov 2015 17:32:28 -0800 Subject: [PATCH] Run hpa, GCE L7 tests in gce-disruptive-1.1 --- test/e2e/horizontal_pod_autoscaling.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/e2e/horizontal_pod_autoscaling.go b/test/e2e/horizontal_pod_autoscaling.go index c0f0f1986cbd..a6566dc9e7b5 100644 --- a/test/e2e/horizontal_pod_autoscaling.go +++ b/test/e2e/horizontal_pod_autoscaling.go @@ -33,7 +33,7 @@ var _ = Describe("Horizontal pod autoscaling", func() { f := NewFramework("horizontal-pod-autoscaling") // CPU tests - It("[Skipped][Autoscaling Suite] should scale from 1 pod to 3 pods and from 3 to 5 (scale resource: CPU)", func() { + It("[Autoscaling Suite] should scale from 1 pod to 3 pods and from 3 to 5 (scale resource: CPU)", func() { rc = NewDynamicResourceConsumer("rc", 1, 250, 0, 500, 100, f) defer rc.CleanUp() createCPUHorizontalPodAutoscaler(rc, 20) @@ -42,7 +42,7 @@ var _ = Describe("Horizontal pod autoscaling", func() { rc.WaitForReplicas(5) }) - It("[Skipped][Autoscaling Suite] should scale from 5 pods to 3 pods and from 3 to 1 (scale resource: CPU)", func() { + It("[Autoscaling Suite] should scale from 5 pods to 3 pods and from 3 to 1 (scale resource: CPU)", func() { rc = NewDynamicResourceConsumer("rc", 5, 400, 0, 500, 100, f) defer rc.CleanUp() createCPUHorizontalPodAutoscaler(rc, 30)