From 6cbdb49868041db3152ee8fd7665f1c159f46516 Mon Sep 17 00:00:00 2001 From: Philipp Kolberg Date: Fri, 15 Dec 2023 02:51:10 +0100 Subject: [PATCH 1/2] Reduce the initialDelaySeconds values The default initialDelaySeconds for the liveness and startup probes are too high for how quickly vaultwarden boots --- charts/vaultwarden/values.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/vaultwarden/values.yaml b/charts/vaultwarden/values.yaml index 0f5d229..109b5b8 100644 --- a/charts/vaultwarden/values.yaml +++ b/charts/vaultwarden/values.yaml @@ -194,7 +194,7 @@ livenessProbe: enabled: true ## @param livenessProbe.initialDelaySeconds Delay before liveness probe is initiated ## - initialDelaySeconds: 200 + initialDelaySeconds: 5 ## @param livenessProbe.timeoutSeconds How long to wait for the probe to succeed ## timeoutSeconds: 1 @@ -239,7 +239,7 @@ startupProbe: enabled: false ## @param startupProbe.initialDelaySeconds Delay before startup probe is initiated ## - initialDelaySeconds: 60 + initialDelaySeconds: 5 ## @param startupProbe.timeoutSeconds How long to wait for the probe to succeed ## timeoutSeconds: 1 From b1f8b4ea2575b76db633fd50ec29183a36a3fa3a Mon Sep 17 00:00:00 2001 From: Philipp Kolberg Date: Sun, 17 Dec 2023 14:41:02 +0100 Subject: [PATCH 2/2] Update Chart version --- charts/vaultwarden/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/vaultwarden/Chart.yaml b/charts/vaultwarden/Chart.yaml index 4838834..84f324c 100644 --- a/charts/vaultwarden/Chart.yaml +++ b/charts/vaultwarden/Chart.yaml @@ -13,5 +13,5 @@ maintainers: - name: guerzon email: guerzon@proton.me url: https://github.com/guerzon -version: 0.18.0 +version: 0.18.1 kubeVersion: ">=1.12.0-0"