From 2994ab4f292d48033a023298e2609006a74412df Mon Sep 17 00:00:00 2001 From: Viktor Barzin Date: Sun, 1 Mar 2026 16:42:35 +0000 Subject: [PATCH] [ci skip] calibre: increase resources to 1 CPU / 1Gi to fix sluggish web UI Was getting LimitRange defaults (250m CPU, 256Mi) causing throttling. --- stacks/calibre/main.tf | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/stacks/calibre/main.tf b/stacks/calibre/main.tf index d330925a..f8e02e88 100644 --- a/stacks/calibre/main.tf +++ b/stacks/calibre/main.tf @@ -156,6 +156,16 @@ resource "kubernetes_deployment" "calibre-web-automated" { port { container_port = 8083 } + resources { + requests = { + cpu = "50m" + memory = "256Mi" + } + limits = { + cpu = "1" + memory = "1Gi" + } + } volume_mount { name = "config" mount_path = "/config"