From b01d35c52614c5513d98716fa51ec576b1f45660 Mon Sep 17 00:00:00 2001 From: Mike Lyttle Date: Fri, 29 Nov 2024 16:51:27 -0800 Subject: [PATCH] fix: increase pod memory and cpu limits (#13) --- charts/app/templates/backend/templates/deployment.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/app/templates/backend/templates/deployment.yaml b/charts/app/templates/backend/templates/deployment.yaml index f3f37aa..86cd09b 100644 --- a/charts/app/templates/backend/templates/deployment.yaml +++ b/charts/app/templates/backend/templates/deployment.yaml @@ -91,11 +91,11 @@ spec: timeoutSeconds: 5 resources: # this is optional limits: - cpu: 150m - memory: 150Mi + cpu: 200m + memory: 512Mi requests: cpu: 50m - memory: 75Mi + memory: 128Mi {{- with .Values.backend.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }}