Unverified Commit 90468447 authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #66160 from mborsz/apiservercpu

Automatic merge from submit-queue (batch tested with PRs 65832, 66160, 66145). 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>. Modify resource constraints for master components. The growth is caused by increasing --kube-api-qps in kube-scheduler. **What this PR does / why we need it**: **Which issue(s) this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close the issue(s) when PR gets merged)*: Fixes # **Special notes for your reviewer**: **Release note**: ```release-note NONE ```
parents 60ca8045 9df9c2e5
...@@ -171,9 +171,9 @@ func density30AddonResourceVerifier(numNodes int) map[string]framework.ResourceC ...@@ -171,9 +171,9 @@ func density30AddonResourceVerifier(numNodes int) map[string]framework.ResourceC
} }
} else { } else {
if numNodes <= 100 { if numNodes <= 100 {
apiserverCPU = 1.8 apiserverCPU = 2.2
apiserverMem = 1700 * (1024 * 1024) apiserverMem = 1700 * (1024 * 1024)
controllerCPU = 0.6 controllerCPU = 0.8
controllerMem = 530 * (1024 * 1024) controllerMem = 530 * (1024 * 1024)
schedulerCPU = 0.4 schedulerCPU = 0.4
schedulerMem = 180 * (1024 * 1024) schedulerMem = 180 * (1024 * 1024)
......
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