From d2660e6b42f0dc522bec0adffdf2d4041efb0dd0 Mon Sep 17 00:00:00 2001 From: Mayne0213 Date: Fri, 2 Jan 2026 09:59:30 +0900 Subject: [PATCH] FIX(postgresql): pg-dev CPU throttling by moving - resources to... - Move resources config under primary.resources (Bitnami chart structure) - Set CPU limit to null to prevent throttling (was 39% throttled) - CPU request: 30m, Memory limit: 256Mi --- postgresql-dev/helm-values.yaml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/postgresql-dev/helm-values.yaml b/postgresql-dev/helm-values.yaml index 761baf1..93ddd10 100644 --- a/postgresql-dev/helm-values.yaml +++ b/postgresql-dev/helm-values.yaml @@ -22,14 +22,13 @@ primary: enabled: true size: 1Gi storageClass: local-path-retain - -resources: - requests: - memory: "256Mi" - cpu: "30m" # Reduced to 30% of original (100m -> 30m) - limits: - cpu: null - memory: null + resources: + requests: + memory: "128Mi" + cpu: "30m" + limits: + cpu: null + memory: "256Mi" metrics: enabled: false