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
This commit is contained in:
2026-01-02 09:59:30 +09:00
parent 758149fb99
commit d2660e6b42

View File

@@ -22,14 +22,13 @@ primary:
enabled: true enabled: true
size: 1Gi size: 1Gi
storageClass: local-path-retain storageClass: local-path-retain
resources: resources:
requests: requests:
memory: "256Mi" memory: "128Mi"
cpu: "30m" # Reduced to 30% of original (100m -> 30m) cpu: "30m"
limits: limits:
cpu: null cpu: null
memory: null memory: "256Mi"
metrics: metrics:
enabled: false enabled: false