From 1f15c3082563137baeaa2907505188be0560e673 Mon Sep 17 00:00:00 2001 From: Piotr Szczesniak Date: Fri, 9 Oct 2015 11:43:58 +0200 Subject: [PATCH] Enabled autoscaling (based on reservation) e2e tests --- test/e2e/autoscaling.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/e2e/autoscaling.go b/test/e2e/autoscaling.go index f233133f662..c41e4c0d1f7 100644 --- a/test/e2e/autoscaling.go +++ b/test/e2e/autoscaling.go @@ -69,7 +69,7 @@ var _ = Describe("Autoscaling", func() { expectNoError(waitForClusterSize(f.Client, nodeCount, scaleDownTimeout)) }) - It("[Skipped] should scale cluster size based on cpu reservation", func() { + It("[Skipped][Autoscaling Suite] should scale cluster size based on cpu reservation", func() { setUpAutoscaler("cpu/node_reservation", 0.5, nodeCount, nodeCount+1) ReserveCpu(f, "cpu-reservation", 600*nodeCount*coresPerNode) @@ -91,7 +91,7 @@ var _ = Describe("Autoscaling", func() { expectNoError(waitForClusterSize(f.Client, nodeCount, scaleDownTimeout)) }) - It("[Skipped] should scale cluster size based on memory reservation", func() { + It("[Skipped][Autoscaling Suite] should scale cluster size based on memory reservation", func() { setUpAutoscaler("memory/node_reservation", 0.5, nodeCount, nodeCount+1) ReserveMemory(f, "memory-reservation", nodeCount*memCapacityMb*6/10)