114 lines
3.1 KiB
YAML
114 lines
3.1 KiB
YAML
controllers:
|
|
main:
|
|
containers:
|
|
main:
|
|
image:
|
|
tag: v2.0.0
|
|
env:
|
|
REDIS_HOSTNAME: '{{ printf "%s-valkey" .Release.Name }}'
|
|
IMMICH_MACHINE_LEARNING_URL: '{{ printf "http://%s-machine-learning:3003" .Release.Name }}'
|
|
DB_HOSTNAME: "{{ .Release.Name }}-postgres-rw.immich.svc.cluster.local"
|
|
DB_USERNAME:
|
|
secretKeyRef:
|
|
name: immich-postgres-user
|
|
key: username
|
|
DB_DATABASE_NAME:
|
|
secretKeyRef:
|
|
name: immich-postgres-user
|
|
key: DB_DATABASE_NAME
|
|
DB_PASSWORD:
|
|
secretKeyRef:
|
|
name: immich-postgres-user
|
|
key: password
|
|
|
|
immich:
|
|
metrics:
|
|
# Enabling this will create the service monitors needed to monitor immich with the prometheus operator
|
|
enabled: false
|
|
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-library-pvc
|
|
# configuration is immich-config.json converted to yaml
|
|
# ref: https://immich.app/docs/install/config-file/
|
|
#
|
|
configuration: {}
|
|
# trash:
|
|
# enabled: false
|
|
# days: 30
|
|
# storageTemplate:
|
|
# enabled: true
|
|
# template: "{{y}}/{{y}}-{{MM}}-{{dd}}/{{filename}}"
|
|
|
|
# Dependencies
|
|
|
|
valkey:
|
|
enabled: true
|
|
controllers:
|
|
main:
|
|
containers:
|
|
main:
|
|
image:
|
|
repository: docker.io/valkey/valkey
|
|
tag: 9.0-alpine@sha256:73f3aa08d95879525aa0dc84ebf6b82b59b898a24e8067a37d6250c31ee2c4d4
|
|
pullPolicy: IfNotPresent
|
|
persistence:
|
|
data:
|
|
enabled: true
|
|
size: 1Gi
|
|
# Optional: Set this to persistentVolumeClaim to keep job queues persistent
|
|
type: emptyDir
|
|
accessMode: ReadWriteOnce
|
|
# storageClass: your-class
|
|
|
|
# Immich components
|
|
|
|
server:
|
|
enabled: true
|
|
controllers:
|
|
main:
|
|
containers:
|
|
main:
|
|
image:
|
|
repository: ghcr.io/immich-app/immich-server
|
|
pullPolicy: IfNotPresent
|
|
ingress:
|
|
main:
|
|
enabled: true
|
|
className: traefik
|
|
annotations:
|
|
# proxy-body-size is set to 0 to remove the body limit on file uploads
|
|
nginx.ingress.kubernetes.io/proxy-body-size: "0"
|
|
cert-manager.io/cluster-issuer: letsencrypt
|
|
hosts:
|
|
- host: photos.dgse.cloud
|
|
paths:
|
|
- path: "/"
|
|
service:
|
|
identifier: main
|
|
tls:
|
|
- hosts:
|
|
- photos.dgse.cloud
|
|
secretName: immich-tls
|
|
|
|
machine-learning:
|
|
enabled: false
|
|
controllers:
|
|
main:
|
|
containers:
|
|
main:
|
|
image:
|
|
repository: ghcr.io/immich-app/immich-machine-learning
|
|
pullPolicy: IfNotPresent
|
|
env:
|
|
TRANSFORMERS_CACHE: /cache
|
|
HF_XET_CACHE: /cache/huggingface-xet
|
|
MPLCONFIGDIR: /cache/matplotlib-config
|
|
persistence:
|
|
cache:
|
|
enabled: true
|
|
size: 10Gi
|
|
existingClaim: immich-ml-pvc
|