From 774347afcaf6b254ea0489c214d174afb9ac426c Mon Sep 17 00:00:00 2001 From: Wojciech Tyczynski Date: Wed, 25 May 2016 09:58:30 +0200 Subject: [PATCH] Speed up load test --- test/e2e/load.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/e2e/load.go b/test/e2e/load.go index f013f2c5391..a9cc468e7c7 100644 --- a/test/e2e/load.go +++ b/test/e2e/load.go @@ -168,9 +168,9 @@ var _ = framework.KubeDescribe("Load capacity", func() { By("============================================================================") // Cleanup all created replication controllers. - // Currently we assume 5 pods/second average deletion throughput. + // Currently we assume 10 pods/second average deletion throughput. // We may want to revisit it in the future. - deletingTime := time.Duration(totalPods/5) * time.Second + deletingTime := time.Duration(totalPods/10) * time.Second deleteAllRC(configs, deletingTime) if createServices == "true" { for _, service := range services {