Commit 6c18db06 authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #36570 from wojtek-t/fix_kubeproxy_resources

Automatic merge from submit-queue Fix resource constraints in density test Fixes one source of flakes in #34911
parents c34babc2 69069cd1
......@@ -75,7 +75,7 @@ func density30AddonResourceVerifier(numNodes int) map[string]framework.ResourceC
if numNodes <= 5 {
apiserverCPU = 0.35
apiserverMem = 150 * (1024 * 1024)
controllerCPU = 0.1
controllerCPU = 0.15
controllerMem = 100 * (1024 * 1024)
schedulerCPU = 0.05
schedulerMem = 50 * (1024 * 1024)
......@@ -133,8 +133,8 @@ func density30AddonResourceVerifier(numNodes int) map[string]framework.ResourceC
MemoryConstraint: 100 * (1024 * 1024),
}
constraints["kube-proxy"] = framework.ResourceConstraint{
CPUConstraint: 0.1,
MemoryConstraint: 20 * (1024 * 1024),
CPUConstraint: 0.15,
MemoryConstraint: 30 * (1024 * 1024),
}
constraints["l7-lb-controller"] = framework.ResourceConstraint{
CPUConstraint: 0.15,
......
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