138 lines
3.2 KiB
YAML
138 lines
3.2 KiB
YAML
## This chart relies on the common library chart from bjw-s
|
|
## You can find it at https://github.com/bjw-s/helm-charts/tree/main/charts/library/common
|
|
## Refer there for more detail about the supported values
|
|
|
|
# These entries are shared between all the Immich components
|
|
|
|
env:
|
|
REDIS_HOSTNAME: '{{ printf "%s-redis-master" .Release.Name }}'
|
|
DB_HOSTNAME: "postgres-postgresql.postgres"
|
|
DB_USERNAME:
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: postgres-password
|
|
key: username
|
|
DB_DATABASE_NAME:
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: postgres-password
|
|
key: database
|
|
DB_PASSWORD:
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: postgres-password
|
|
key: password
|
|
TYPESENSE_ENABLED: "{{ .Values.typesense.enabled }}"
|
|
TYPESENSE_API_KEY: "{{ .Values.typesense.env.TYPESENSE_API_KEY }}"
|
|
TYPESENSE_HOST: '{{ printf "%s-typesense" .Release.Name }}'
|
|
IMMICH_WEB_URL: '{{ printf "http://%s-web:3000" .Release.Name }}'
|
|
IMMICH_SERVER_URL: '{{ printf "http://%s-server:3001" .Release.Name }}'
|
|
IMMICH_MACHINE_LEARNING_URL: '{{ printf "http://%s-machine-learning:3003" .Release.Name }}'
|
|
|
|
image:
|
|
tag: v1.88.2
|
|
|
|
immich:
|
|
persistence:
|
|
# Main data store for all photos shared between different components.
|
|
library:
|
|
# Automatically creating the library volume is not supported by this chart
|
|
# You have to specify an existing PVC to use
|
|
existingClaim: immich-nfs
|
|
|
|
# Dependencies
|
|
|
|
postgresql:
|
|
enabled: false
|
|
|
|
|
|
redis:
|
|
enabled: true
|
|
architecture: standalone
|
|
auth:
|
|
enabled: false
|
|
|
|
typesense:
|
|
enabled: true
|
|
env:
|
|
TYPESENSE_DATA_DIR: /tsdata
|
|
TYPESENSE_API_KEY: typesense
|
|
persistence:
|
|
tsdata:
|
|
# Enabling typesense persistence is recommended to avoid slow reindexing
|
|
enabled: true
|
|
accessMode: ReadWriteOnce
|
|
size: 1Gi
|
|
# storageClass: storage-class
|
|
image:
|
|
repository: docker.io/typesense/typesense
|
|
tag: 0.24.0
|
|
pullPolicy: IfNotPresent
|
|
|
|
# Immich components
|
|
|
|
server:
|
|
enabled: true
|
|
|
|
image:
|
|
repository: ghcr.io/immich-app/immich-server
|
|
pullPolicy: IfNotPresent
|
|
|
|
ingress:
|
|
main:
|
|
enabled: false
|
|
|
|
microservices:
|
|
enabled: true
|
|
env:
|
|
REVERSE_GEOCODING_DUMP_DIRECTORY: /geodata-cache
|
|
persistence:
|
|
geodata-cache:
|
|
enabled: true
|
|
size: 1Gi
|
|
# Optional: Set this to pvc to avoid downloading the geodata every start.
|
|
type: emptyDir
|
|
accessMode: ReadWriteMany
|
|
# storageClass: your-class
|
|
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
|
|
# Optional: Set this to pvc to avoid downloading the ML models every start.
|
|
type: emptyDir
|
|
accessMode: ReadWriteMany
|
|
# storageClass: your-class
|
|
|
|
# web:
|
|
# enabled: true
|
|
# image:
|
|
# repository: ghcr.io/immich-app/immich-web
|
|
# pullPolicy: IfNotPresent
|
|
# persistence:
|
|
# library:
|
|
# enabled: false
|
|
|
|
# proxy:
|
|
# enabled: true
|
|
# image:
|
|
# repository: ghcr.io/immich-app/immich-proxy
|
|
# pullPolicy: IfNotPresent
|
|
|
|
# persistence:
|
|
# library:
|
|
# enabled: false
|
|
|
|
|
|
|