docs: improve readmes and add example

This commit is contained in:
secustor 2025-01-18 01:06:39 +01:00
parent e8efe7fcad
commit 092905c9d4
No known key found for this signature in database
6 changed files with 136 additions and 6 deletions

View file

@ -0,0 +1,32 @@
apiVersion: v1
kind: Secret
metadata:
name: immich-db-immich
type: Opaque
stringData:
username: "an-user"
password: "a-password"
---
apiVersion: postgresql.cnpg.io/v1
kind: Cluster
metadata:
name: immich-db
spec:
imageName: ghcr.io/cloudnative-pg/postgresql:17.2-bookworm
instances: 1
storage:
size: 15Gi
bootstrap:
initdb:
database: immich
owner: immich
secret:
name: immich-db-immich
managed:
roles:
- name: immich
createdb: true
login: true
superuser: true
passwordSecret:
name: immich-db-immich