Mirror of argocd/manifests/databases/immich-pg.yaml on ringtail: - Same VectorChord image (PG17 + VectorChord 0.5.0) - Same extensions (vector, vchord, cube, earthdistance) via postInitSQL - Same managed borgmatic role with pg_read_all_data - 10 GiB local-path storage (matches minikube source) - shared_preload_libraries: vchord.so - Empty initdb today; bootstrap block will be rewritten when immich-pg-data-migration picks its import method. ArgoCD app databases-ringtail targets ringtail/databases. ExternalSecret reuses the onepassword-blumeops ClusterSecretStore that already exists on ringtail via external-secrets-ringtail. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
32 lines
870 B
YAML
32 lines
870 B
YAML
# ExternalSecret for borgmatic backup user password on immich-pg cluster
|
|
# (ringtail k3s).
|
|
#
|
|
# Mirror of argocd/manifests/databases/external-secret-immich-borgmatic.yaml.
|
|
# The onepassword-blumeops ClusterSecretStore exists on ringtail via the
|
|
# external-secrets-ringtail app.
|
|
#
|
|
# 1Password item: "borgmatic" in blumeops vault
|
|
# Field: "db-password"
|
|
apiVersion: external-secrets.io/v1
|
|
kind: ExternalSecret
|
|
metadata:
|
|
name: immich-pg-borgmatic
|
|
namespace: databases
|
|
spec:
|
|
refreshInterval: 1h
|
|
secretStoreRef:
|
|
kind: ClusterSecretStore
|
|
name: onepassword-blumeops
|
|
target:
|
|
name: immich-pg-borgmatic
|
|
creationPolicy: Owner
|
|
template:
|
|
type: kubernetes.io/basic-auth
|
|
data:
|
|
username: borgmatic
|
|
password: "{{ .password }}"
|
|
data:
|
|
- secretKey: password
|
|
remoteRef:
|
|
key: borgmatic
|
|
property: db-password
|