[Helm chart] use /healthz as default route in readiness/liveness (#5990)

feat: #1627 use `/healthz` as default route in readinessProbe/livenessProbe of volume server
This commit is contained in:
wangtao
2024-09-10 00:34:28 +08:00
committed by GitHub
parent 92b87cbfb6
commit 0c0666055b

View File

@@ -459,7 +459,7 @@ volume:
livenessProbe: livenessProbe:
enabled: true enabled: true
httpGet: httpGet:
path: /status path: /healthz
scheme: HTTP scheme: HTTP
initialDelaySeconds: 20 initialDelaySeconds: 20
periodSeconds: 90 periodSeconds: 90
@@ -472,7 +472,7 @@ volume:
readinessProbe: readinessProbe:
enabled: true enabled: true
httpGet: httpGet:
path: /status path: /healthz
scheme: HTTP scheme: HTTP
initialDelaySeconds: 15 initialDelaySeconds: 15
periodSeconds: 15 periodSeconds: 15