Files
homelab/postgres/cluster.yaml

33 lines
761 B
YAML

---
apiVersion: postgresql.cnpg.io/v1
kind: Cluster
metadata:
name: postgres-cluster
namespace: postgres-system
spec:
instances: 3
minSyncReplicas: 1
maxSyncReplicas: 1
primaryUpdateStrategy: unsupervised
certificates:
serverAltDNSNames:
- postgres.home
postgresql:
pg_hba:
- hostssl all all all cert
- hostssl giteadb gitea 10.42.0.0/16 md5
enableSuperuserAccess: true
superuserSecret:
name: postgres-password
bootstrap:
initdb:
database: postgres
secret:
name: postgres-password
postInitSQL:
- 'CREATE EXTENSION IF NOT EXISTS "uuid-ossp";'
- 'CREATE USER shahab SUPERUSER CREATEROLE;'
- 'CREATE DATABASE giteadb;'
storage:
size: 1Gi