Skip to content

Commit

Permalink
Set resource limits for operator deployment (#376)
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 21c4d7d commit 62f0fad
Showing 1 changed file with 7 additions and 11 deletions.
18 changes: 7 additions & 11 deletions deploy/helm/superset-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 62f0fad

Please sign in to comment.