Files
applications/immich/helm-values.yaml
Mayne0213 6ea23f1995 CHORE(authelia): disable local auth and add Authelia SSO
- code-server: Change --auth password to --auth none
- code-server: Add Authelia middleware to ingress
- immich: Add Authelia middleware to ingress
- umami: Add Authelia middleware to ingress
2026-01-05 00:43:51 +09:00

86 lines
1.9 KiB
YAML

# Immich Helm Values
# Chart: https://github.com/immich-app/immich-charts (v0.10.x)
# Self-hosted photo and video management solution
# Shared configuration for all components
controllers:
main:
containers:
main:
env:
# External PostgreSQL connection
DB_HOSTNAME: postgresql-rw.postgresql.svc.cluster.local
DB_PORT: "5432"
DB_DATABASE_NAME: immich
DB_USERNAME: bluemayne
DB_PASSWORD:
valueFrom:
secretKeyRef:
name: immich-postgres-password
key: password
# Immich configuration
immich:
persistence:
library:
existingClaim: immich-library
# Valkey for job queue
valkey:
enabled: true
controllers:
main:
containers:
main:
image:
repository: docker.io/valkey/valkey
tag: 9.0-alpine
# Server component
server:
enabled: true
controllers:
main:
containers:
main:
resources:
requests:
cpu: 10m
memory: 256Mi
limits:
memory: 1Gi
ingress:
main:
enabled: true
className: traefik
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
traefik.ingress.kubernetes.io/router.middlewares: authelia-authelia-auth@kubernetescrd
hosts:
- host: immich0213.kro.kr
paths:
- path: /
service:
identifier: main
tls:
- secretName: immich-tls
hosts:
- immich0213.kro.kr
# Machine Learning component
machine-learning:
enabled: true
controllers:
main:
containers:
main:
resources:
requests:
cpu: 10m
memory: 512Mi
limits:
memory: 4Gi
persistence:
cache:
enabled: false