Skip to content

Commit

Permalink
Merge pull request #57252 from kawych/ms_res
Browse files Browse the repository at this point in the history
Automatic merge from submit-queue (batch tested with PRs 57252, 57168). 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>.

Reduce CPU and memory requests for Metrics Server Nanny

**What this PR does / why we need it**:
Metrics Server Nanny is a sidecar container that performs small computations every 5 minutes to scale Metrics Server resource requirements when cluster size changes. This change reduces the CPU and memory requests to free up unused resource.

**Release note**:
```release-note
Free up CPU and memory requested but unused by Metrics Server Pod Nanny.
```
  • Loading branch information
Kubernetes Submit Queue committed Dec 20, 2017
2 parents 7706957 + bb159cf commit dd9bca8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cluster/addons/metrics-server/metrics-server-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ spec:
cpu: 100m
memory: 300Mi
requests:
cpu: 50m
memory: 100Mi
cpu: 5m
memory: 50Mi
env:
- name: MY_POD_NAME
valueFrom:
Expand Down

0 comments on commit dd9bca8

Please sign in to comment.