From 384213bf006a2b3d35a46708bb655fb2a1c1f3b4 Mon Sep 17 00:00:00 2001 From: Stavros Kois <47820033+stavros-k@users.noreply.github.com> Date: Sun, 30 Oct 2022 17:34:00 +0200 Subject: [PATCH] chore(authentik): reset all probes timeout except startup (#4244) --- charts/stable/authentik/Chart.yaml | 2 +- charts/stable/authentik/templates/_worker.tpl | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/stable/authentik/Chart.yaml b/charts/stable/authentik/Chart.yaml index e61dba5c5b6..2ebf827f42a 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.3 +version: 7.2.4 annotations: truecharts.org/catagories: | - authentication diff --git a/charts/stable/authentik/templates/_worker.tpl b/charts/stable/authentik/templates/_worker.tpl index 8695a1eca16..def8506b9f1 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: 10 + timeoutSeconds: {{ .Values.probes.readiness.spec.timeoutSeconds }} 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: 10 + timeoutSeconds: {{ .Values.probes.liveness.spec.timeoutSeconds }} periodSeconds: {{ .Values.probes.liveness.spec.periodSeconds }} failureThreshold: {{ .Values.probes.liveness.spec.failureThreshold }} startupProbe: