This repository has been archived on 2025-05-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
kittehcluster/kubernetes/services/immich/postgres/postgres.yml

26 lines
559 B
YAML

image:
repository: tensorchord/pgvecto-rs
tag: pg14-v0.2.0
global:
security:
allowInsecureImages: true
postgresql:
auth:
username: immich
database: immich
password: immich
primary:
containerSecurityContext:
readOnlyRootFilesystem: false
persistence:
enabled: true
existingClaim: data-immich-postgresql-0
resources:
limits:
memory: 1024Mi
initdb:
scripts:
create-extensions.sql: |
CREATE EXTENSION cube;
CREATE EXTENSION earthdistance;
CREATE EXTENSION vectors;