## Summary - Update Immich from v2.5.0 to v2.5.2 ## Deployment and Testing - [ ] Sync apps application: `argocd app sync apps` - [ ] Point immich at feature branch: `argocd app set immich --revision update-immich-2.5.2` - [ ] Sync immich: `argocd app sync immich` - [ ] Verify pods restart and photos.ops.eblu.me is accessible - [ ] After merge, reset to main: `argocd app set immich --revision main && argocd app sync immich` 🤖 Generated with [Claude Code](https://claude.com/claude-code) Reviewed-on: https://forge.ops.eblu.me/eblume/blumeops/pulls/72
71 lines
1.5 KiB
YAML
71 lines
1.5 KiB
YAML
# Immich Helm values for blumeops
|
|
# Chart: https://github.com/immich-app/immich-charts (v0.10.3)
|
|
#
|
|
# Immich requires:
|
|
# - PostgreSQL with VectorChord extension (separate immich-pg cluster)
|
|
# - Redis/Valkey (included in chart)
|
|
# - Library storage PVC (photos directory from sifaka NFS)
|
|
|
|
# Shared environment variables
|
|
env:
|
|
TZ: "America/Los_Angeles"
|
|
|
|
# Shared controller settings - image tag and DB connection
|
|
controllers:
|
|
main:
|
|
containers:
|
|
main:
|
|
image:
|
|
tag: v2.5.2
|
|
env:
|
|
DB_HOSTNAME: "immich-pg-rw.databases.svc.cluster.local"
|
|
DB_PORT: "5432"
|
|
DB_DATABASE_NAME: "immich"
|
|
DB_USERNAME: "immich"
|
|
DB_PASSWORD:
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: immich-db
|
|
key: password
|
|
|
|
# Immich server configuration
|
|
immich:
|
|
persistence:
|
|
library:
|
|
existingClaim: immich-library
|
|
|
|
# Machine Learning service
|
|
machine-learning:
|
|
enabled: true
|
|
persistence:
|
|
cache:
|
|
enabled: true
|
|
type: persistentVolumeClaim
|
|
accessMode: ReadWriteOnce
|
|
size: 10Gi
|
|
resources:
|
|
requests:
|
|
memory: "512Mi"
|
|
cpu: "100m"
|
|
limits:
|
|
memory: "4Gi"
|
|
cpu: "2000m"
|
|
|
|
# Valkey (Redis fork) - included in chart
|
|
valkey:
|
|
enabled: true
|
|
persistence:
|
|
data:
|
|
enabled: true
|
|
type: emptyDir
|
|
size: 1Gi
|
|
|
|
# Server resources for minikube
|
|
server:
|
|
resources:
|
|
requests:
|
|
memory: "256Mi"
|
|
cpu: "100m"
|
|
limits:
|
|
memory: "2Gi"
|
|
cpu: "2000m"
|