Skip to content

Commit

Permalink
Merge pull request #61715 from shyamjvs/increase-density-cm-threshold
Browse files Browse the repository at this point in the history
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 #61190 (comment)

/cc @wojtek-t 

```release-note
NONE
```
  • Loading branch information
Kubernetes Submit Queue committed Mar 27, 2018
2 parents d885863 + c27531f commit 74c2d3d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/e2e/scalability/density.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down

0 comments on commit 74c2d3d

Please sign in to comment.