From 34e7a7cf06aef25982b8759732dc9de1e30d7479 Mon Sep 17 00:00:00 2001 From: Shyam Jeedigunta Date: Fri, 9 Mar 2018 18:18:18 +0100 Subject: [PATCH] Revert "Use quotas in default performance tests" This reverts commit c3c10208bd545add54a9ecd8d7d7f5747d5a9e0b. --- test/e2e/scalability/density.go | 2 +- test/e2e/scalability/load.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/e2e/scalability/density.go b/test/e2e/scalability/density.go index 9c8784b0d35..469c3c8ad8e 100644 --- a/test/e2e/scalability/density.go +++ b/test/e2e/scalability/density.go @@ -487,7 +487,7 @@ var _ = SIGDescribe("Density", func() { } isCanonical := func(test *Density) bool { - return test.kind == api.Kind("ReplicationController") && test.daemonsPerNode == 0 && test.secretsPerPod == 0 && test.configMapsPerPod == 0 && test.quotas + return test.kind == api.Kind("ReplicationController") && test.daemonsPerNode == 0 && test.secretsPerPod == 0 && test.configMapsPerPod == 0 && !test.quotas } for _, testArg := range densityTests { diff --git a/test/e2e/scalability/load.go b/test/e2e/scalability/load.go index 69f82bd4e26..a717929c8c0 100644 --- a/test/e2e/scalability/load.go +++ b/test/e2e/scalability/load.go @@ -196,7 +196,7 @@ var _ = SIGDescribe("Load capacity", func() { } isCanonical := func(test *Load) bool { - return test.podsPerNode == 30 && test.kind == api.Kind("ReplicationController") && test.daemonsPerNode == 0 && test.secretsPerPod == 0 && test.configMapsPerPod == 0 && test.quotas + return test.podsPerNode == 30 && test.kind == api.Kind("ReplicationController") && test.daemonsPerNode == 0 && test.secretsPerPod == 0 && test.configMapsPerPod == 0 && !test.quotas } for _, testArg := range loadTests {