Files
storage/postgresql-dev/helm-values.yaml
Mayne0213 d2660e6b42 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
2026-01-05 00:39:12 +09:00

35 lines
639 B
YAML

# PostgreSQL (Development) Helm Values
# Chart: https://github.com/bitnami/charts/tree/main/bitnami/postgresql
# Single instance for development
fullnameOverride: postgresql-dev
image:
tag: latest
architecture: standalone
auth:
existingSecret: postgresql-password-dev
secretKeys:
adminPasswordKey: postgres-password
userPasswordKey: password
username: bluemayne
database: postgres
primary:
persistence:
enabled: true
size: 1Gi
storageClass: local-path-retain
resources:
requests:
memory: "128Mi"
cpu: "30m"
limits:
cpu: null
memory: "256Mi"
metrics:
enabled: false