mirror of
https://github.com/michaelthomson0797/fleet-infra.git
synced 2026-02-04 13:09:53 +00:00
immich cnpg cluster
This commit is contained in:
44
immich/cluster.yaml
Normal file
44
immich/cluster.yaml
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
apiVersion: postgresql.cnpg.io/v1
|
||||||
|
kind: Cluster
|
||||||
|
metadata:
|
||||||
|
name: immich-postgres
|
||||||
|
spec:
|
||||||
|
# At the time of writing, immich is only compatible with pgvecto.rs <0.4. Latest postgres image with that version is 16.5.
|
||||||
|
imageName: ghcr.io/tensorchord/cloudnative-pgvecto.rs:16.5-v0.3.0@sha256:be3f025d79aa1b747817f478e07e71be43236e14d00d8a9eb3914146245035ba
|
||||||
|
instances: 1
|
||||||
|
|
||||||
|
postgresql:
|
||||||
|
shared_preload_libraries:
|
||||||
|
- "vectors.so"
|
||||||
|
|
||||||
|
managed:
|
||||||
|
roles:
|
||||||
|
- name: immich
|
||||||
|
superuser: true
|
||||||
|
login: true
|
||||||
|
|
||||||
|
bootstrap:
|
||||||
|
initdb:
|
||||||
|
database: immich
|
||||||
|
owner: immich
|
||||||
|
secret:
|
||||||
|
name: immich-postgres-user
|
||||||
|
postInitSQL:
|
||||||
|
- CREATE EXTENSION IF NOT EXISTS "vectors";
|
||||||
|
- CREATE EXTENSION IF NOT EXISTS "cube" CASCADE;
|
||||||
|
- CREATE EXTENSION IF NOT EXISTS "earthdistance" CASCADE;
|
||||||
|
|
||||||
|
storage:
|
||||||
|
size: 8Gi
|
||||||
|
storageClass: longhorn
|
||||||
|
|
||||||
|
externalClusters:
|
||||||
|
- name: cluster-pg96
|
||||||
|
connectionParameters:
|
||||||
|
# Use the correct IP or host name for the source database
|
||||||
|
host: "http://immich-postgresql.immich.svc.cluster.local:5432"
|
||||||
|
user: immich
|
||||||
|
dbname: immich
|
||||||
|
password:
|
||||||
|
name: immich-postgres-user
|
||||||
|
key: password
|
||||||
Reference in New Issue
Block a user