Files
storage/postgresql-dev/helm-values.yaml
Mayne0213 f4ba1ef156 REFACTOR(argocd): remove cpu: null
- to fix ArgoCD drift detection
- Remove explicit cpu: null from limits (chart default is empty anyway)
- Remove ignoreDifferences workaround (no longer needed)
2026-01-05 00:39:12 +09:00

34 lines
623 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:
memory: "256Mi"
metrics:
enabled: false