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
```
This commit is contained in:
Kubernetes Submit Queue 2018-03-27 04:08:06 -07:00 committed by GitHub
commit 74c2d3d11a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -171,8 +171,8 @@ func density30AddonResourceVerifier(numNodes int) map[string]framework.ResourceC
if numNodes <= 100 {
apiserverCPU = 1.8
apiserverMem = 1700 * (1024 * 1024)
controllerCPU = 0.5
controllerMem = 500 * (1024 * 1024)
controllerCPU = 0.6
controllerMem = 530 * (1024 * 1024)
schedulerCPU = 0.4
schedulerMem = 180 * (1024 * 1024)
}