Unverified Commit 63c40972 authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #54996 from mwielgus/metadata-proxy

Automatic merge from submit-queue. 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 metadata-proxy cpu requests to 30m After the recent change enabling metadata-proxy in tests (https://github.com/kubernetes/kubernetes/pull/54150) we started seeing problems with scheduling cluster autoscaler on master. Metadata-proxy eats all of the available space leaving nothing for CA to run on. This PR reduces the cpu requests for metadata-proxy allowing other components to fit in. cc: @kubernetes/sig-autoscaling-bugs
parents 7a28aaff 3c615b4b
...@@ -47,10 +47,10 @@ spec: ...@@ -47,10 +47,10 @@ spec:
resources: resources:
requests: requests:
memory: "32Mi" memory: "32Mi"
cpu: "50m" cpu: "30m"
limits: limits:
memory: "32Mi" memory: "32Mi"
cpu: "50m" cpu: "30m"
volumeMounts: volumeMounts:
- name: config-volume - name: config-volume
mountPath: /etc/nginx/ mountPath: /etc/nginx/
......
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