From 67e4fa5b6e6cb8dc88132fb6785afbd03855580b Mon Sep 17 00:00:00 2001 From: Wojciech Tyczynski Date: Thu, 15 Sep 2016 10:45:03 +0200 Subject: [PATCH] Reduce maximum number of net-proxy pods to make test work in large clusters --- test/e2e/networking_utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/networking_utils.go b/test/e2e/networking_utils.go index 35e75f8a5f6..cf2b56e3de3 100644 --- a/test/e2e/networking_utils.go +++ b/test/e2e/networking_utils.go @@ -53,7 +53,7 @@ const ( // because we verify iptables statistical rr loadbalancing. testTries = 30 // Maximum number of pods in a test, to make test work in large clusters. - maxNetProxyPodsCount = 100 + maxNetProxyPodsCount = 20 ) // NewNetworkingTestConfig creates and sets up a new test config helper.