mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
Fix liveness & readiness probes (#14108)
Signed-off-by: Grant Saunders <saundersg@dnb.com>
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
bcb2c7aa21
commit
bc8816599b
@@ -1,7 +1,7 @@
|
||||
apiVersion: v1
|
||||
description: A Helm chart for Vault, a tool for managing secrets
|
||||
name: vault
|
||||
version: 0.18.7
|
||||
version: 0.18.8
|
||||
appVersion: 1.0.1
|
||||
home: https://www.vaultproject.io/
|
||||
icon: https://www.vaultproject.io/assets/images/mega-nav/logo-vault-0f83e3d2.svg
|
||||
|
||||
@@ -62,8 +62,8 @@ spec:
|
||||
{{- if .Values.vault.liveness.aliveIfSealed -}}sealedcode=204&{{- end }}
|
||||
port: {{ .Values.service.port }}
|
||||
scheme: {{ if .Values.vault.config.listener.tcp.tls_disable -}}HTTP{{- else -}}HTTPS{{- end }}
|
||||
initialDelaySeconds: {{ .Values.vault.liveness.initialDelaySeconds }}
|
||||
periodSeconds: {{ .Values.vault.liveness.periodSeconds }}
|
||||
initialDelaySeconds: {{ .Values.vault.liveness.initialDelaySeconds }}
|
||||
periodSeconds: {{ .Values.vault.liveness.periodSeconds }}
|
||||
readinessProbe:
|
||||
# Ready depends on preference
|
||||
httpGet:
|
||||
@@ -73,8 +73,8 @@ spec:
|
||||
{{- if .Values.vault.readiness.readyIfUninitialized -}}uninitcode=204&{{- end }}
|
||||
port: {{ .Values.service.port }}
|
||||
scheme: {{ if .Values.vault.config.listener.tcp.tls_disable -}}HTTP{{- else -}}HTTPS{{- end }}
|
||||
initialDelaySeconds: {{ .Values.vault.readiness.initialDelaySeconds }}
|
||||
periodSeconds: {{ .Values.vault.readiness.periodSeconds }}
|
||||
initialDelaySeconds: {{ .Values.vault.readiness.initialDelaySeconds }}
|
||||
periodSeconds: {{ .Values.vault.readiness.periodSeconds }}
|
||||
securityContext:
|
||||
readOnlyRootFilesystem: true
|
||||
capabilities:
|
||||
|
||||
Reference in New Issue
Block a user