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

Merge pull request #61715 from shyamjvs/increase-density-cm-threshold

Automatic merge from submit-queue (batch tested with PRs 60499, 61715, 61688, 61300, 58787). 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>. Increase cpu/mem thresholds for c-m in density test Follows https://github.com/kubernetes/kubernetes/issues/61190#issuecomment-376159552 /cc @wojtek-t ```release-note NONE ```
parents d8858637 c27531f2
...@@ -171,8 +171,8 @@ func density30AddonResourceVerifier(numNodes int) map[string]framework.ResourceC ...@@ -171,8 +171,8 @@ func density30AddonResourceVerifier(numNodes int) map[string]framework.ResourceC
if numNodes <= 100 { if numNodes <= 100 {
apiserverCPU = 1.8 apiserverCPU = 1.8
apiserverMem = 1700 * (1024 * 1024) apiserverMem = 1700 * (1024 * 1024)
controllerCPU = 0.5 controllerCPU = 0.6
controllerMem = 500 * (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