Skip to content

Commit

Permalink
resource request and limit
Browse files Browse the repository at this point in the history
  • Loading branch information
james-otten committed Oct 11, 2024
1 parent cc5f067 commit 82939c1
Showing 1 changed file with 35 additions and 15 deletions.
50 changes: 35 additions & 15 deletions infra/helm/meshdb/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,13 @@ pg:
# readOnlyRootFilesystem: true
# 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: 1
memory: 512Mi
requests:
cpu: 200m
memory: 256Mi
nodeSelector: {}
affinity: {}
tolerations: []
Expand All @@ -47,7 +43,13 @@ meshweb:
tag: main
podSecurityContext: {}
securityContext: {}
resources: {}
resources:
limits:
cpu: 1
memory: 512Mi
requests:
cpu: 200m
memory: 350Mi
nodeSelector: {}
affinity: {}
tolerations: []
Expand All @@ -56,7 +58,13 @@ nginx:
port: 80
podSecurityContext: {}
securityContext: {}
resources: {}
resources:
limits:
cpu: 1
memory: 100Mi
requests:
cpu: 250m
memory: 30Mi
nodeSelector: {}
affinity: {}
tolerations: []
Expand All @@ -83,7 +91,13 @@ redis:
port: 6379
podSecurityContext: {}
securityContext: {}
resources: {}
resources:
limits:
cpu: 1
memory: 512Mi
requests:
cpu: 50m
memory: 30Mi
nodeSelector: {}
affinity: {}
tolerations: []
Expand All @@ -92,7 +106,13 @@ pelias:
port: 3000
podSecurityContext: {}
securityContext: {}
resources: {}
resources:
limits:
cpu: 1
memory: 512Mi
requests:
cpu: 250m
memory: 250Mi
nodeSelector: {}
affinity: {}
tolerations: []
Expand Down

0 comments on commit 82939c1

Please sign in to comment.