fix: increase memory limits for OOMKilled pods (immich, clickhouse, speedtest)
- immich-server: limits 1700Mi → 2500Mi (70 restarts from media processing spikes) - clickhouse: limits 1Gi → 1536Mi, max_server_memory_usage 800Mi → 1200Mi - speedtest: limits 256Mi → 512Mi, requests 256Mi → 128Mi (daily OOM during test)
This commit is contained in:
parent
399f0e2bd0
commit
252b65a574
3 changed files with 5 additions and 5 deletions
|
|
@ -157,10 +157,10 @@ resource "kubernetes_deployment" "speedtest" {
|
|||
resources {
|
||||
requests = {
|
||||
cpu = "25m"
|
||||
memory = "256Mi"
|
||||
memory = "128Mi"
|
||||
}
|
||||
limits = {
|
||||
memory = "256Mi"
|
||||
memory = "512Mi"
|
||||
}
|
||||
}
|
||||
volume_mount {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue