Commit 34e7a7cf authored by Shyam Jeedigunta's avatar Shyam Jeedigunta

Revert "Use quotas in default performance tests"

This reverts commit c3c10208.
parent 7c9293e1
...@@ -487,7 +487,7 @@ var _ = SIGDescribe("Density", func() { ...@@ -487,7 +487,7 @@ var _ = SIGDescribe("Density", func() {
} }
isCanonical := func(test *Density) bool { 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 { for _, testArg := range densityTests {
......
...@@ -196,7 +196,7 @@ var _ = SIGDescribe("Load capacity", func() { ...@@ -196,7 +196,7 @@ var _ = SIGDescribe("Load capacity", func() {
} }
isCanonical := func(test *Load) bool { 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 { for _, testArg := range loadTests {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment