From 065090dfe0f2d241e0e197fd2e07f7e060eb0039 Mon Sep 17 00:00:00 2001 From: Viktor Barzin Date: Tue, 3 Mar 2026 19:48:45 +0000 Subject: [PATCH] [ci skip] fix calibre: bump CPU/memory to prevent SIGBUS during calibre_postinstall --- stacks/calibre/main.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stacks/calibre/main.tf b/stacks/calibre/main.tf index 36921c96..6c47abb2 100644 --- a/stacks/calibre/main.tf +++ b/stacks/calibre/main.tf @@ -190,12 +190,12 @@ resource "kubernetes_deployment" "calibre-web-automated" { } resources { requests = { - cpu = "25m" + cpu = "50m" memory = "256Mi" } limits = { - cpu = "500m" - memory = "1Gi" + cpu = "2" + memory = "1536Mi" } } volume_mount {