From 86e34b01069c050d627a8fd2c941ccb7f8a29194 Mon Sep 17 00:00:00 2001 From: Zoe Roux Date: Fri, 18 Jul 2025 13:02:12 +0200 Subject: [PATCH] Add authentik media pvc (no clue why we need it) --- apps/authentik.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/apps/authentik.yaml b/apps/authentik.yaml index c44351b..2d028b3 100644 --- a/apps/authentik.yaml +++ b/apps/authentik.yaml @@ -38,11 +38,16 @@ spec: volumeMounts: - name: postgres-cert mountPath: /var/postgres-ssl + - name: authentik-media + mountPath: /media volumes: - name: postgres-cert secret: defaultMode: 0640 secretName: postgres-authentik + - name: authentik-media + persistentVolumeClaim: + claimName: authentik-media securityContext: fsGroup: 1001 runAsUser: 1001