Use quotas in default performance tests

This commit is contained in:
Marek Grabowski 2018-02-26 11:07:13 +00:00
parent 15b7d4666d
commit c3c10208bd
2 changed files with 2 additions and 2 deletions

View File

@ -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 {

View File

@ -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 {