From feced4994a1e478f19927f48bb2c8b13c27e0054 Mon Sep 17 00:00:00 2001 From: AB-UK Date: Wed, 11 Mar 2026 16:04:19 +0000 Subject: [PATCH] authentik: fix worker readiness probe (worker has no HTTP listener) --- k8s/core/authentik/values.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/k8s/core/authentik/values.yaml b/k8s/core/authentik/values.yaml index 021439e..042e93d 100644 --- a/k8s/core/authentik/values.yaml +++ b/k8s/core/authentik/values.yaml @@ -23,6 +23,27 @@ worker: volumeMounts: - name: dshm mountPath: /dev/shm + livenessProbe: + exec: + command: ["/bin/sh", "-c", "kill -0 1"] + initialDelaySeconds: 5 + periodSeconds: 10 + failureThreshold: 3 + timeoutSeconds: 3 + readinessProbe: + exec: + command: ["/bin/sh", "-c", "kill -0 1"] + initialDelaySeconds: 5 + periodSeconds: 10 + failureThreshold: 3 + timeoutSeconds: 3 + startupProbe: + exec: + command: ["/bin/sh", "-c", "kill -0 1"] + initialDelaySeconds: 30 + periodSeconds: 10 + failureThreshold: 60 + timeoutSeconds: 3 server: envFrom: - secretRef: