From c3c10208bd545add54a9ecd8d7d7f5747d5a9e0b Mon Sep 17 00:00:00 2001 From: Marek Grabowski Date: Mon, 26 Feb 2018 11:07:13 +0000 Subject: [PATCH] Use quotas in default performance tests --- 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 c136b5c0cd..9b6ea6bf53 100644 --- a/test/e2e/scalability/density.go +++ b/test/e2e/scalability/density.go @@ -491,7 +491,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 9246e2a9d6..067750b85c 100644 --- a/test/e2e/scalability/load.go +++ b/test/e2e/scalability/load.go @@ -197,7 +197,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 {