Skip to content

Commit

Permalink
Reduce the initialDelaySeconds values (#62)
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 authored Dec 17, 2023
1 parent 67b5a64 commit 2c6a5b0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/vaultwarden/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ maintainers:
- name: guerzon
email: [email protected]
url: https://github.com/guerzon
version: 0.18.2
version: 0.18.3
kubeVersion: ">=1.12.0-0"
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 2c6a5b0

Please sign in to comment.