fix OOMKilled containers: bump immich/actualbudget memory, disable changedetection, cap clickhouse

- immich-server: 512Mi/1Gi → 1700Mi/1700Mi (VPA upperBound 1.39Gi, 34 OOM restarts)
- actualbudget http-api: 384Mi → 768Mi (VPA upperBound 615Mi, 3 OOM restarts)
- changedetection: replicas 1 → 0 (chronic OOM at 64Mi, not worth memory cost)
- rybbit clickhouse: add ConfigMap capping max_server_memory_usage to 800Mi (within 1Gi limit)
This commit is contained in:
Viktor Barzin 2026-03-22 15:22:29 +02:00
parent 3130a5f9e0
commit c103a1ee05
4 changed files with 31 additions and 5 deletions

View file

@ -76,7 +76,8 @@ resource "kubernetes_deployment" "changedetection" {
}
}
spec {
replicas = 1
# Disabled: chronic OOM at 64Mi limit, not worth the memory cost to increase
replicas = 0
strategy {
type = "Recreate"
}