- storage - Add Longhorn Helm chart configuration - Configure UI ingress at longhorn0213.kro.kr - Set CPU limits to null to prevent throttling - Configure 3 replicas for high availability - Set Longhorn as default StorageClass
35 lines
644 B
YAML
35 lines
644 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
|
|
|
|
persistence:
|
|
enabled: true
|
|
size: 10Gi
|
|
storageClass: local-path
|
|
|
|
resources:
|
|
requests:
|
|
memory: "256Mi"
|
|
cpu: "30m" # Reduced to 30% of original (100m -> 30m)
|
|
limits:
|
|
cpu: null
|
|
memory: null
|
|
|
|
metrics:
|
|
enabled: false
|