Skip to content

Commit

Permalink
build: reduce preview resource requirements (#4507)
Browse files Browse the repository at this point in the history
  • Loading branch information
mswertz authored Nov 21, 2024
1 parent 491ea68 commit 0847fc9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions helm-chart/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ spec:
limits:
memory: "2Gi"
requests:
memory: "500Mi"
memory: "256Mi"
ports:
- containerPort: 8080
env:
Expand Down Expand Up @@ -74,9 +74,9 @@ spec:
- max_locks_per_transaction=1024
resources:
limits:
memory: "1Gi"
memory: "512Mi"
requests:
memory: "256Mi"
memory: "128Mi"
env:
- name: POSTGRES_DB
value: {{ .Values.postgres.name }}
Expand All @@ -102,9 +102,9 @@ spec:
imagePullPolicy: {{ .Values.image.pullPolicy }}
resources:
limits:
memory: "1Gi"
memory: "128Mi"
requests:
memory: "256Mi"
memory: "64Mi"
ports:
- containerPort: 3000
env:
Expand Down

0 comments on commit 0847fc9

Please sign in to comment.