From e59107f458b41db1ebb1a20465d7bb1ddd22da67 Mon Sep 17 00:00:00 2001 From: Jerzy Szczepkowski Date: Fri, 2 Sep 2016 15:20:21 +0200 Subject: [PATCH] Bumped memory limit for resource consumer. Fixes #31591. Bumped memory limit for resource consumer from 100 MB to 200 MB. Fixes #31591. --- test/e2e/horizontal_pod_autoscaling.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/horizontal_pod_autoscaling.go b/test/e2e/horizontal_pod_autoscaling.go index b5d85c6193f..fe5a41f7f80 100644 --- a/test/e2e/horizontal_pod_autoscaling.go +++ b/test/e2e/horizontal_pod_autoscaling.go @@ -122,7 +122,7 @@ type HPAScaleTest struct { // The second state change (optional) is due to the CPU burst parameter, which HPA again responds to. // TODO The use of 3 states is arbitrary, we could eventually make this test handle "n" states once this test stabilizes. func (scaleTest *HPAScaleTest) run(name, kind string, rc *ResourceConsumer, f *framework.Framework) { - rc = NewDynamicResourceConsumer(name, kind, int(scaleTest.initPods), int(scaleTest.totalInitialCPUUsage), 0, 0, scaleTest.perPodCPURequest, 100, f) + rc = NewDynamicResourceConsumer(name, kind, int(scaleTest.initPods), int(scaleTest.totalInitialCPUUsage), 0, 0, scaleTest.perPodCPURequest, 200, f) defer rc.CleanUp() createCPUHorizontalPodAutoscaler(rc, scaleTest.targetCPUUtilizationPercent, scaleTest.minPods, scaleTest.maxPods) rc.WaitForReplicas(int(scaleTest.firstScale))