From cfc4471f8c3b5790f473484304a4d3463b8f64df Mon Sep 17 00:00:00 2001 From: Piotr Szczesniak Date: Wed, 19 Aug 2015 16:33:07 +0200 Subject: [PATCH] Fixed memory consumption in Autoscaling e2e --- test/e2e/autoscaling.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/autoscaling.go b/test/e2e/autoscaling.go index d934f79d91..9678d750d3 100644 --- a/test/e2e/autoscaling.go +++ b/test/e2e/autoscaling.go @@ -167,7 +167,7 @@ func ConsumeMemory(f *Framework, id string, chunks int) { Namespace: f.Namespace.Name, Timeout: 10 * time.Minute, Image: "jess/stress", - Command: []string{"stress", "-m", "1"}, + Command: []string{"stress", "-m", "1", "--vm-hang", "0"}, Replicas: chunks, } expectNoError(RunRC(*config))