[ci skip] calibre: increase resources to 1 CPU / 1Gi to fix sluggish web UI

Was getting LimitRange defaults (250m CPU, 256Mi) causing throttling.
This commit is contained in:
Viktor Barzin 2026-03-01 16:42:35 +00:00
parent 6efc1e56c0
commit 2994ab4f29

View file

@ -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"