Merge pull request #61118 from shyamjvs/bump-apiserver-mem-threshold

Automatic merge from submit-queue (batch tested with PRs 61118, 60579). 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 apiserver mem-threshold in density test

Ref: https://github.com/kubernetes/kubernetes/issues/60500#issuecomment-372682659 (fixes part of that issue)

/sig scalability
/kind bug
/priority important-soon
/cc @wojtek-t
/cc @crassirostris (for the release-note)

```release-note
Audit logging with buffering enabled can increase apiserver memory usage (e.g. up to 200MB in 100-node cluster). The increase is bounded by the buffer size (configurable). Ref: issue #60500
```
This commit is contained in:
Kubernetes Submit Queue 2018-03-14 09:49:48 -07:00 committed by GitHub
commit 05ec0a77b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -166,7 +166,7 @@ func density30AddonResourceVerifier(numNodes int) map[string]framework.ResourceC
} else {
if numNodes <= 100 {
apiserverCPU = 1.8
apiserverMem = 1500 * (1024 * 1024)
apiserverMem = 1700 * (1024 * 1024)
controllerCPU = 0.5
controllerMem = 500 * (1024 * 1024)
schedulerCPU = 0.4