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 -}}