[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:
parent
6efc1e56c0
commit
2994ab4f29
1 changed files with 10 additions and 0 deletions
|
|
@ -156,6 +156,16 @@ resource "kubernetes_deployment" "calibre-web-automated" {
|
||||||
port {
|
port {
|
||||||
container_port = 8083
|
container_port = 8083
|
||||||
}
|
}
|
||||||
|
resources {
|
||||||
|
requests = {
|
||||||
|
cpu = "50m"
|
||||||
|
memory = "256Mi"
|
||||||
|
}
|
||||||
|
limits = {
|
||||||
|
cpu = "1"
|
||||||
|
memory = "1Gi"
|
||||||
|
}
|
||||||
|
}
|
||||||
volume_mount {
|
volume_mount {
|
||||||
name = "config"
|
name = "config"
|
||||||
mount_path = "/config"
|
mount_path = "/config"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue