Skip to content

Commit

Permalink
Fix readiness probe for vault v1.3.0
Browse files Browse the repository at this point in the history
Since hashicorp/vault#7323 vault respects the
vaules passed to the healthcheck for `standbyok` and `perfstandbyok`.

When you spin up a v1.3.0 vault cluster of more than one node, the first
node will come up normally, but the readiness probe will fail on the
second.

Pump chart version

Signed-off-by: Armin Buerkle <[email protected]>
  • Loading branch information
arminbuerkle committed Nov 21, 2019
1 parent 8541ff4 commit 2acd055
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion vault/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
description: A Helm chart for Vault, a tool for managing secrets
name: vault
version: 0.9.1
version: 0.9.2
appVersion: 1.2.3
home: https://www.vaultproject.io/
icon: https://www.vaultproject.io/assets/images/mega-nav/logo-vault-0f83e3d2.svg
Expand Down
2 changes: 1 addition & 1 deletion vault/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ spec:
{{ else }}
scheme: HTTPS
{{ end }}
path: /v1/sys/health?standbyok&perfstandbyok
path: /v1/sys/health?standbyok=true&perfstandbyok=true
port: vault
securityContext:
readOnlyRootFilesystem: true
Expand Down

0 comments on commit 2acd055

Please sign in to comment.