mirror of https://github.com/k3s-io/k3s
Merge pull request #60421 from gmarek/quotas
Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. Use quotas in default performance tests Better to use more features in default tests if possible. LGTM whenever you think we're ready. ```release-note NONE ```pull/6/head
commit
b13105d43b
|
@ -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 {
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue