From 47c828eb78670966566eb550a6efcb0da4076a31 Mon Sep 17 00:00:00 2001 From: Viktor Barzin Date: Sat, 14 Mar 2026 16:38:09 +0000 Subject: [PATCH] fix: bump calibre memory limit to 512Mi Calibre binary installation was timing out at 256Mi, leaving the web server unable to start. --- stacks/calibre/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stacks/calibre/main.tf b/stacks/calibre/main.tf index 81f7d133..58d3273f 100644 --- a/stacks/calibre/main.tf +++ b/stacks/calibre/main.tf @@ -200,7 +200,7 @@ resource "kubernetes_deployment" "calibre-web-automated" { memory = "256Mi" } limits = { - memory = "256Mi" + memory = "512Mi" } } volume_mount {