From 42fd1e5a92a4cee25ee1af257b1b6bac4504f247 Mon Sep 17 00:00:00 2001 From: William P Date: Tue, 24 Feb 2026 22:26:36 -0500 Subject: [PATCH] authentik: adjust probes from default --- authentik/values.yaml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/authentik/values.yaml b/authentik/values.yaml index 4eac647..ba64b34 100644 --- a/authentik/values.yaml +++ b/authentik/values.yaml @@ -15,6 +15,35 @@ authentik: service: labels: metrics_enabled: "true" + livenessProbe: + failureThreshold: 3 + initialDelaySeconds: 5 + periodSeconds: 10 + successThreshold: 1 + timeoutSeconds: 10 + httpGet: + path: "{{ .Values.authentik.web.path }}-/health/live/" + port: http + + readinessProbe: + failureThreshold: 3 + initialDelaySeconds: 5 + periodSeconds: 10 + successThreshold: 1 + timeoutSeconds: 10 + httpGet: + path: "{{ .Values.authentik.web.path }}-/health/ready/" + port: http + + startupProbe: + failureThreshold: 60 + initialDelaySeconds: 5 + periodSeconds: 10 + successThreshold: 1 + timeoutSeconds: 10 + httpGet: + path: "{{ .Values.authentik.web.path }}-/health/live/" + port: http worker: replicas: 1 volumeMounts: