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

@ -149,10 +149,10 @@ resource "kubernetes_deployment" "actualbudget-http-api" {
resources {
requests = {
cpu = "50m"
memory = "384Mi"
memory = "768Mi"
}
limits = {
memory = "384Mi"
memory = "768Mi"
}
}