2023-11-18 14:54:55 +00:00
## 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
2024-08-17 20:23:37 +00:00
defaultPodOptions:
annotations:
diun.enable: "true"
2023-11-18 14:54:55 +00:00
env:
# REDIS_HOSTNAME: ' { { printf "%s-redis-master" . Release . Name } } '
2026-04-19 12:42:36 +00:00
REDIS_HOSTNAME: "redis-master.redis.svc.cluster.local"
2025-05-10 18:54:11 +00:00
# DB_HOSTNAME: "postgresql.dbaas"
# DB_USERNAME: "immich"
# DB_DATABASE_NAME: "immich"
# # # -- You should provide your own secret outside of this helm-chart and use `postgresql.global.postgresql.auth.existingSecret` to provide credentials to the postgresql instance
# DB_PASSWORD: "$ { postgresql_password } "
2023-11-18 14:54:55 +00:00
# TYPESENSE_ENABLED: " { { . Values . typesense . enabled } } "
2023-12-27 18:29:50 +00:00
# TYPESENSE_ENABLED: "1"
2023-11-18 14:54:55 +00:00
# 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 } } '
2023-11-24 18:30:29 +00:00
# IMMICH_WEB_URL: "http://immich-web.immich.svc.cluster.local:3000"
# IMMICH_WEB_URL: "http://immich-server.immich.svc.cluster.local:3001"
2023-11-18 14:54:55 +00:00
# IMMICH_SERVER_URL: ' { { printf "http://%s-server:3001" . Release . Name } } '
2024-10-27 19:42:57 +00:00
# IMMICH_SERVER_URL: "http://immich-server.immich.svc.cluster.local:3001"
# IMMICH_SERVER_URL: "http://immich-server.immich.svc.cluster.local:2283"
2023-11-18 14:54:55 +00:00
# IMMICH_MACHINE_LEARNING_URL: ' { { printf "http://%s-machine-learning:3003" . Release . Name } } '
2024-10-27 19:42:57 +00:00
# IMMICH_MACHINE_LEARNING_URL: "http://immich-machine-learning.immich.svc.cluster.local:3003"
2023-11-18 14:54:55 +00:00
image:
2025-12-14 09:47:36 +00:00
tag: $ { version }
2023-11-18 14:54:55 +00:00
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
redis:
enabled: false
architecture: standalone
auth:
enabled: false
# Immich components
server:
enabled: true
image:
repository: ghcr.io/immich-app/immich-server
pullPolicy: IfNotPresent
2025-05-04 11:19:43 +00:00
# increase liveliness and readiness checks to allow enough time for downloading models
2023-11-18 14:54:55 +00:00
machine-learning:
2025-12-14 09:47:36 +00:00
# enabled: true
enabled: false
2023-11-18 14:54:55 +00:00
image:
repository: ghcr.io/immich-app/immich-machine-learning
pullPolicy: IfNotPresent
env:
TRANSFORMERS_CACHE: /cache
2025-01-03 17:50:13 +00:00
# MACHINE_LEARNING_PRELOAD__CLIP: immich-app/ViT-H-14-378-quickgelu__dfn5b # too big(?)
# MACHINE_LEARNING_PRELOAD__CLIP: immich-app/ViT-L-16-SigLIP-384__webli # too big(?)
2025-05-04 11:19:43 +00:00
#MACHINE_LEARNING_PRELOAD__CLIP: ViT-B-32__openai # too big(?)
2025-05-10 18:54:11 +00:00
MACHINE_LEARNING_PRELOAD__CLIP: ViT-B-16-SigLIP2__webli
2023-11-18 14:54:55 +00:00
persistence:
cache:
enabled: true
size: 10Gi
# Optional: Set this to pvc to avoid downloading the ML models every start.
type: emptyDir
accessMode: ReadWriteMany