mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-23 03:41:45 +00:00
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
This commit is contained in:
commit
6c18db06dd
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user