Skip to content

Commit

Permalink
Set resource limits for operator deployment (#366)
Browse files Browse the repository at this point in the history
For stackabletech/issues#368 we need to set resource limits on all resources deployed by our helm charts.
  • Loading branch information
soenkeliebau committed Jul 3, 2023
1 parent d8f1d33 commit ba8e8f6
Showing 1 changed file with 7 additions and 11 deletions.
18 changes: 7 additions & 11 deletions deploy/helm/hdfs-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,13 @@ securityContext: {}
# runAsNonRoot: true
# runAsUser: 1000

resources: {}
# We usually recommend not to specify default resources and to leave this as a conscious
# choice for the user. This also increases chances charts run on environments with little
# resources, such as Minikube. If you do want to specify resources, uncomment the following
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
resources:
limits:
cpu: 100m
memory: 128Mi
requests:
cpu: 100m
memory: 128Mi

nodeSelector: {}

Expand Down

0 comments on commit ba8e8f6

Please sign in to comment.