- to fix ArgoCD drift detection - Remove explicit cpu: null from limits (chart default is empty anyway) - Remove ignoreDifferences workaround (no longer needed)
34 lines
623 B
YAML
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
|