mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-25 12:43:23 +00:00
Merge pull request #41008 from wojtek-t/fix_scalability_test
Automatic merge from submit-queue (batch tested with PRs 40978, 40994, 41008, 40622) Fix failing density test in 100-node clusters
This commit is contained in:
commit
7c8091fa0c
@ -144,7 +144,12 @@ func density30AddonResourceVerifier(numNodes int) map[string]framework.ResourceC
|
|||||||
}
|
}
|
||||||
constraints["kube-proxy"] = framework.ResourceConstraint{
|
constraints["kube-proxy"] = framework.ResourceConstraint{
|
||||||
CPUConstraint: 0.15,
|
CPUConstraint: 0.15,
|
||||||
MemoryConstraint: 30 * (1024 * 1024),
|
// When we are running purely density test, 30MB seems to be enough.
|
||||||
|
// However, we are usually running Density together with Load test.
|
||||||
|
// Thus, if Density is running after Load (which is creating and
|
||||||
|
// propagating a bunch of services), kubeproxy is using much more
|
||||||
|
// memory and not releasing it afterwards.
|
||||||
|
MemoryConstraint: 60 * (1024 * 1024),
|
||||||
}
|
}
|
||||||
constraints["l7-lb-controller"] = framework.ResourceConstraint{
|
constraints["l7-lb-controller"] = framework.ResourceConstraint{
|
||||||
CPUConstraint: 0.15,
|
CPUConstraint: 0.15,
|
||||||
|
Loading…
Reference in New Issue
Block a user