22 lines
433 B
YAML
22 lines
433 B
YAML
apiVersion: postgresql.cnpg.io/v1
|
|
kind: Cluster
|
|
metadata:
|
|
name: backstage-pg-cluster
|
|
spec:
|
|
instances: 1
|
|
imageCatalogRef:
|
|
apiGroup: postgresql.cnpg.io
|
|
kind: ClusterImageCatalog
|
|
name: postgresql
|
|
major: 17
|
|
|
|
bootstrap:
|
|
initdb:
|
|
postInitSQL:
|
|
- 'GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA public TO app'
|
|
- 'ALTER USER app CREATEDB'
|
|
|
|
storage:
|
|
size: 10Gi
|
|
storageClass: nfs-client
|