[ci skip] Increase authentik ResourceQuota limits
Authentik is a critical auth service that was at 83% CPU/memory quota utilization. Double all limits to prevent throttling.
This commit is contained in:
parent
534e63c9b8
commit
a9f96e2e53
1 changed files with 5 additions and 5 deletions
|
|
@ -27,11 +27,11 @@ resource "kubernetes_resource_quota" "authentik" {
|
||||||
}
|
}
|
||||||
spec {
|
spec {
|
||||||
hard = {
|
hard = {
|
||||||
"requests.cpu" = "8"
|
"requests.cpu" = "16"
|
||||||
"requests.memory" = "8Gi"
|
"requests.memory" = "16Gi"
|
||||||
"limits.cpu" = "24"
|
"limits.cpu" = "48"
|
||||||
"limits.memory" = "48Gi"
|
"limits.memory" = "96Gi"
|
||||||
pods = "30"
|
pods = "50"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue