mirror of https://github.com/k3s-io/k3s
parent
7c9293e1c3
commit
34e7a7cf06
|
@ -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 {
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue