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: