Skip to content

Commit

Permalink
Reduce the initialDelaySeconds values
Browse files Browse the repository at this point in the history
The default initialDelaySeconds for the liveness and startup probes are too high for how quickly vaultwarden boots
  • Loading branch information
PKizzle committed Dec 15, 2023
1 parent ba5ff95 commit 6cbdb49
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions charts/vaultwarden/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 6cbdb49

Please sign in to comment.