fix: bump openclaw memory limit to 1536Mi

Was hitting V8 heap OOM at 768Mi during LLM orchestration.
This commit is contained in:
Viktor Barzin 2026-03-14 16:45:57 +00:00
parent 683361b55e
commit 39b7dac1a9

View file

@ -630,11 +630,11 @@ resource "kubernetes_deployment" "openclaw" {
} }
resources { resources {
limits = { limits = {
memory = "768Mi" memory = "1536Mi"
} }
requests = { requests = {
cpu = "100m" cpu = "100m"
memory = "768Mi" memory = "512Mi"
} }
} }
} }