- Update configuration for chart v0.10.x compatibility - Set library PVC size appropriately
96 lines
2.0 KiB
YAML
96 lines
2.0 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
|
|
persistence:
|
|
data:
|
|
enabled: true
|
|
size: 1Gi
|
|
type: persistentVolumeClaim
|
|
accessMode: ReadWriteOnce
|
|
storageClass: longhorn
|
|
|
|
# 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
|
|
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: true
|
|
size: 10Gi
|
|
type: persistentVolumeClaim
|
|
accessMode: ReadWriteOnce
|
|
storageClass: longhorn
|