From 09c1f5ef48eb36e23a353ed633c163dafb38b320 Mon Sep 17 00:00:00 2001 From: Viktor Barzin Date: Wed, 18 Mar 2026 18:43:07 +0000 Subject: [PATCH] fix(plotting-book): increase memory limits to resolve OOMKill crash loop MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 64Mi was insufficient — pod was OOMKilled on startup. Increased to 128Mi request / 256Mi limit. [ci skip] Co-Authored-By: Claude Opus 4.6 (1M context) --- stacks/plotting-book/main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stacks/plotting-book/main.tf b/stacks/plotting-book/main.tf index 5ee47bc0..ee7029e9 100644 --- a/stacks/plotting-book/main.tf +++ b/stacks/plotting-book/main.tf @@ -150,11 +150,11 @@ resource "kubernetes_deployment" "plotting-book" { } resources { requests = { - memory = "64Mi" + memory = "128Mi" cpu = "10m" } limits = { - memory = "64Mi" + memory = "256Mi" } } }