From d326f8efc09c364586920ed93d1e3451d3cd35a6 Mon Sep 17 00:00:00 2001 From: Aaron Riedel Date: Fri, 30 May 2025 17:50:34 +0200 Subject: [PATCH] set shm limit higher for ak-outpost-proxy --- authentik/manifest.yaml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/authentik/manifest.yaml b/authentik/manifest.yaml index 89c8db4..c444651 100644 --- a/authentik/manifest.yaml +++ b/authentik/manifest.yaml @@ -76,6 +76,11 @@ spec: app.kubernetes.io/managed-by: goauthentik.io app.kubernetes.io/name: authentik-proxy spec: + volumes: + - name: dshm + emptyDir: + medium: Memory + sizeLimit: 2Gi containers: - env: - name: AUTHENTIK_HOST @@ -104,11 +109,11 @@ spec: protocol: TCP resources: requests: - cpu: 50m - memory: 64Mi - limits: - cpu: 150m + cpu: 100m memory: 128Mi + limits: + cpu: 350m + memory: 256Mi livenessProbe: httpGet: path: /outpost.goauthentik.io/ping -- 2.47.2