From 5501b5cfbfb79373b304ed530e5a7ea92fd222bd Mon Sep 17 00:00:00 2001 From: Viktor Barzin Date: Sun, 22 Feb 2026 17:28:41 +0000 Subject: [PATCH] [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. --- stacks/platform/modules/authentik/main.tf | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/stacks/platform/modules/authentik/main.tf b/stacks/platform/modules/authentik/main.tf index 9f220a99..2087ea18 100644 --- a/stacks/platform/modules/authentik/main.tf +++ b/stacks/platform/modules/authentik/main.tf @@ -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" } } }