From f038c0031d19d1583cbb88790987b6671afdd6c6 Mon Sep 17 00:00:00 2001 From: Stavros Kois <47820033+stavros-k@users.noreply.github.com> Date: Sun, 30 Oct 2022 12:47:46 +0200 Subject: [PATCH] chore(authentik): increase healthcheck timeout in attempt to fix an issue for some users (#4242) --- charts/stable/authentik/Chart.yaml | 2 +- charts/stable/authentik/templates/_worker.tpl | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/charts/stable/authentik/Chart.yaml b/charts/stable/authentik/Chart.yaml index ea0e3e3bd16..0dbb7bf789a 100644 --- a/charts/stable/authentik/Chart.yaml +++ b/charts/stable/authentik/Chart.yaml @@ -27,7 +27,7 @@ sources: - https://github.com/truecharts/charts/tree/master/charts/stable/authentik - https://github.com/goauthentik/authentik - https://goauthentik.io/docs/ -version: 7.2.2 +version: 7.2.3 annotations: truecharts.org/catagories: | - authentication diff --git a/charts/stable/authentik/templates/_worker.tpl b/charts/stable/authentik/templates/_worker.tpl index 64c3b583b04..8695a1eca16 100644 --- a/charts/stable/authentik/templates/_worker.tpl +++ b/charts/stable/authentik/templates/_worker.tpl @@ -28,7 +28,7 @@ readinessProbe: - /lifecycle/ak - healthcheck initialDelaySeconds: {{ .Values.probes.readiness.spec.initialDelaySeconds }} - timeoutSeconds: {{ .Values.probes.readiness.spec.timeoutSeconds }} + timeoutSeconds: 10 periodSeconds: {{ .Values.probes.readiness.spec.periodSeconds }} failureThreshold: {{ .Values.probes.readiness.spec.failureThreshold }} livenessProbe: @@ -37,7 +37,7 @@ livenessProbe: - /lifecycle/ak - healthcheck initialDelaySeconds: {{ .Values.probes.liveness.spec.initialDelaySeconds }} - timeoutSeconds: {{ .Values.probes.liveness.spec.timeoutSeconds }} + timeoutSeconds: 10 periodSeconds: {{ .Values.probes.liveness.spec.periodSeconds }} failureThreshold: {{ .Values.probes.liveness.spec.failureThreshold }} startupProbe: @@ -46,7 +46,7 @@ startupProbe: - /lifecycle/ak - healthcheck initialDelaySeconds: {{ .Values.probes.startup.spec.initialDelaySeconds }} - timeoutSeconds: {{ .Values.probes.startup.spec.timeoutSeconds }} + timeoutSeconds: 10 periodSeconds: {{ .Values.probes.startup.spec.periodSeconds }} failureThreshold: {{ .Values.probes.startup.spec.failureThreshold }} {{- end -}}