k3s-cluster/cluster/apps/database/postgresql/helm-release.yaml

30 lines
667 B
YAML
Raw Normal View History

2023-04-06 22:39:06 -04:00
apiVersion: helm.toolkit.fluxcd.io/v2beta1
kind: HelmRelease
metadata:
name: postgresql
namespace: database
spec:
interval: 5m
chart:
spec:
chart: postgresql
version: 12.2.x
sourceRef:
kind: HelmRepository
name: bitnami-charts
namespace: flux-system
values:
auth:
username: k3spostgresql
existingSecret: "pgsql-secrets"
secretKeys:
adminPasswordKey: "adminPassword"
userPasswordKey: "userPassword"
replicationPasswordKey: "replicationPassword"
2023-04-10 20:40:18 -04:00
2023-04-10 21:13:13 -04:00
volumePermissions:
enabled: true
2023-04-10 21:50:10 -04:00
2023-04-10 22:51:45 -04:00
primary:
persistence:
existingClaim: "postgresql-pv-claim"