chore: Sync cluster data.
This commit is contained in:
parent
7e886e16c6
commit
e18821eacd
10 changed files with 109 additions and 38 deletions
26
kubernetes/services/immich/postgres/postgres.yml
Normal file
26
kubernetes/services/immich/postgres/postgres.yml
Normal file
|
@ -0,0 +1,26 @@
|
|||
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;
|
Reference in a new issue