123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- env:
- LOG_LEVEL: 'debug'
- TZ: 'America/New_York'
- REDIS_HOSTNAME: '{{ printf "%s-redis-master" .Release.Name }}'
- DB_HOSTNAME: "{{ .Release.Name }}-postgresql"
- DB_USERNAME: "{{ .Values.postgresql.global.postgresql.auth.username }}"
- DB_DATABASE_NAME: "{{ .Values.postgresql.global.postgresql.auth.database }}"
-
- DB_PASSWORD: "{{ .Values.postgresql.global.postgresql.auth.password }}"
- IMMICH_MACHINE_LEARNING_URL: '{{ printf "http://%s-machine-learning:3003" .Release.Name }}'
- image:
- tag: v1.91.4
- immich:
- persistence:
-
- library:
-
-
- existingClaim: immich-pvc
- postgresql:
- enabled: true
- image:
- repository: tensorchord/pgvecto-rs
- tag: pg14-v0.1.11
- global:
- postgresql:
- auth:
- username: immich
- database: immich
- password: immich
- primary:
- persistence:
- size: 8Gi
- storageClass: ceph-block
- initdb:
- scripts:
- create-extensions.sql: |
- CREATE EXTENSION cube;
- CREATE EXTENSION earthdistance;
- CREATE EXTENSION vectors;
- redis:
- enabled: true
- architecture: standalone
- auth:
- enabled: false
- master:
- persistence:
- size: 8Gi
- storageClass: ceph-block
- server:
- enabled: true
- image:
- repository: ghcr.io/immich-app/immich-server
- pullPolicy: IfNotPresent
- ingress:
- main:
- enabled: false
- annotations:
-
- nginx.ingress.kubernetes.io/proxy-body-size: "0"
- hosts:
- - host: immich.local
- paths:
- - path: "/"
- tls: []
- microservices:
- enabled: true
- image:
- repository: ghcr.io/immich-app/immich-server
- pullPolicy: IfNotPresent
- machine-learning:
- enabled: true
- image:
- repository: ghcr.io/immich-app/immich-machine-learning
- pullPolicy: IfNotPresent
- env:
- TRANSFORMERS_CACHE: /cache
- persistence:
- cache:
- enabled: true
- size: 10Gi
-
- type: pvc
- accessMode: ReadWriteOnce
- storageClass: ceph-block
- podAnnotations:
- backup.velero.io/backup-volumes-excludes: cache
|