[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
116c4d9c30
commit
5501b5cfbf
1 changed files with 5 additions and 5 deletions
|
|
@ -27,11 +27,11 @@ resource "kubernetes_resource_quota" "authentik" {
|
|||
}
|
||||
spec {
|
||||
hard = {
|
||||
"requests.cpu" = "8"
|
||||
"requests.memory" = "8Gi"
|
||||
"limits.cpu" = "24"
|
||||
"limits.memory" = "48Gi"
|
||||
pods = "30"
|
||||
"requests.cpu" = "16"
|
||||
"requests.memory" = "16Gi"
|
||||
"limits.cpu" = "48"
|
||||
"limits.memory" = "96Gi"
|
||||
pods = "50"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue