Skip to content

Commit

Permalink
Update prometheus-operator mem/cpu request/limits
Browse files Browse the repository at this point in the history
- Make requests = limits
- Increase memory request/limit for 500+ node clusters
  • Loading branch information
mm4tt committed Apr 15, 2021
1 parent 5e3b31e commit dec0494
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ spec:
resources:
limits:
cpu: 200m
memory: 200Mi
memory: {{IfThenElse (lt .Nodes 500) 200 400}}Mi
requests:
cpu: 100m
memory: 100Mi
cpu: 200m
memory: {{IfThenElse (lt .Nodes 500) 200 400}}Mi
securityContext:
allowPrivilegeEscalation: false
readOnlyRootFilesystem: true
Expand Down

0 comments on commit dec0494

Please sign in to comment.