From 79eef0d19b2d31c5f1684cf73e7ae5cfec309241 Mon Sep 17 00:00:00 2001 From: ychung-mot Date: Thu, 14 Mar 2024 12:41:43 -0700 Subject: [PATCH 1/2] chore: fix frontend resource --- helm/main/values-prod.yaml | 12 ++++++------ helm/main/values-test.yaml | 12 ++++++------ helm/main/values-uat.yaml | 12 ++++++------ 3 files changed, 18 insertions(+), 18 deletions(-) diff --git a/helm/main/values-prod.yaml b/helm/main/values-prod.yaml index a9f7c481..245aa7d1 100644 --- a/helm/main/values-prod.yaml +++ b/helm/main/values-prod.yaml @@ -28,12 +28,12 @@ frontend: secretName: strdss-secrets-prod resources: - limits: - cpu: 50m - memory: 100Mi - requests: - cpu: 20m - memory: 50Mi + limits: + cpu: 50m + memory: 100Mi + requests: + cpu: 20m + memory: 50Mi env: 'API_HOST': '/api' diff --git a/helm/main/values-test.yaml b/helm/main/values-test.yaml index d067c6f4..bf130d03 100644 --- a/helm/main/values-test.yaml +++ b/helm/main/values-test.yaml @@ -28,12 +28,12 @@ frontend: secretName: strdss-secrets-test resources: - limits: - cpu: 50m - memory: 100Mi - requests: - cpu: 20m - memory: 50Mi + limits: + cpu: 50m + memory: 100Mi + requests: + cpu: 20m + memory: 50Mi env: 'API_HOST': '/api' diff --git a/helm/main/values-uat.yaml b/helm/main/values-uat.yaml index a5bbd0ce..96a5b9f5 100644 --- a/helm/main/values-uat.yaml +++ b/helm/main/values-uat.yaml @@ -28,12 +28,12 @@ frontend: secretName: strdss-secrets-uat resources: - limits: - cpu: 50m - memory: 100Mi - requests: - cpu: 20m - memory: 50Mi + limits: + cpu: 50m + memory: 100Mi + requests: + cpu: 20m + memory: 50Mi env: 'API_HOST': '/api' From c05ed5a49e626b89b396edb55459391045039724 Mon Sep 17 00:00:00 2001 From: ychung-mot Date: Thu, 14 Mar 2024 12:42:46 -0700 Subject: [PATCH 2/2] chore: bacekend memory 100Mi --- helm/main/values-dev.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helm/main/values-dev.yaml b/helm/main/values-dev.yaml index c725c801..7b1a3e0c 100644 --- a/helm/main/values-dev.yaml +++ b/helm/main/values-dev.yaml @@ -57,10 +57,10 @@ backend: resources: limits: cpu: 200m - memory: 250Mi + memory: 150Mi requests: cpu: 20m - memory: 200Mi + memory: 100Mi env: 'API_HOST': '/api'