From 39b7dac1a964160f45cb72fae7e53ea345ef66a7 Mon Sep 17 00:00:00 2001 From: Viktor Barzin Date: Sat, 14 Mar 2026 16:45:57 +0000 Subject: [PATCH] fix: bump openclaw memory limit to 1536Mi Was hitting V8 heap OOM at 768Mi during LLM orchestration. --- stacks/openclaw/main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stacks/openclaw/main.tf b/stacks/openclaw/main.tf index 5667162c..6f26efe7 100644 --- a/stacks/openclaw/main.tf +++ b/stacks/openclaw/main.tf @@ -630,11 +630,11 @@ resource "kubernetes_deployment" "openclaw" { } resources { limits = { - memory = "768Mi" + memory = "1536Mi" } requests = { cpu = "100m" - memory = "768Mi" + memory = "512Mi" } } }