- New CNPG PostgreSQL cluster (siriusdevops-pgdb) in customer1 namespace - Single-instance, 20Gi storage, GCS backups to siriusdevops-backups/ - Waitlist database definition (waitlist-db.yaml) - Scheduled backup manifest - Waitlist API deployment, service, HTTPRoute, and Telegram secret placeholder - Kustomization wiring for both siriusdevops-db and waitlist-api
45 lines
969 B
YAML
45 lines
969 B
YAML
apiVersion: postgresql.cnpg.io/v1
|
|
kind: Cluster
|
|
metadata:
|
|
name: siriusdevops-pgdb
|
|
namespace: customer1
|
|
|
|
spec:
|
|
instances: 1
|
|
imageName: ghcr.io/cloudnative-pg/postgresql:15.2
|
|
storage:
|
|
size: 20Gi
|
|
|
|
managed:
|
|
roles:
|
|
- name: waitlist
|
|
ensure: present
|
|
login: true
|
|
passwordSecret:
|
|
name: waitlist-db-credentials
|
|
|
|
bootstrap:
|
|
initdb:
|
|
database: waitlist
|
|
owner: waitlist
|
|
secret:
|
|
name: waitlist-db-credentials
|
|
|
|
serviceAccountTemplate:
|
|
metadata:
|
|
name: cnpg-backup-sa
|
|
annotations:
|
|
iam.gke.io/gcp-service-account: cnpg-backup-sa@devops-lab-cluster.iam.gserviceaccount.com
|
|
|
|
backup:
|
|
barmanObjectStore:
|
|
destinationPath: "gs://customer1_db_backup/siriusdevops-backups/"
|
|
googleCredentials:
|
|
gkeEnvironment: true
|
|
wal:
|
|
compression: gzip
|
|
data:
|
|
compression: gzip
|
|
jobs: 2
|
|
retentionPolicy: "30d"
|
|
target: primary
|