Set default resource requests limits
This commit is contained in:
parent
680d801c50
commit
b33c9a21a5
1 changed files with 9 additions and 5 deletions
|
@ -224,13 +224,17 @@ controller:
|
||||||
|
|
||||||
minAvailable: 1
|
minAvailable: 1
|
||||||
|
|
||||||
resources: {}
|
# Define requests resources to avoid probe issues due to CPU utilization in busy nodes
|
||||||
|
# ref: https://github.com/kubernetes/ingress-nginx/issues/4735#issuecomment-551204903
|
||||||
|
# Ideally, there should be no limits.
|
||||||
|
# https://engineering.indeedblog.com/blog/2019/12/cpu-throttling-regression-fix/
|
||||||
|
resources:
|
||||||
# limits:
|
# limits:
|
||||||
# cpu: 100m
|
# cpu: 100m
|
||||||
# memory: 64Mi
|
# memory: 90Mi
|
||||||
# requests:
|
requests:
|
||||||
# cpu: 100m
|
cpu: 100m
|
||||||
# memory: 64Mi
|
memory: 90Mi
|
||||||
|
|
||||||
autoscaling:
|
autoscaling:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
|
Loading…
Reference in a new issue