[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-09 09:34:28 -07:00
committed by GitHub
parent 92b87cbfb6
commit 0c0666055b
+2 -2
View File
@@ -459,7 +459,7 @@ volume:
livenessProbe:
enabled: true
httpGet:
path: /status
path: /healthz
scheme: HTTP
initialDelaySeconds: 20
periodSeconds: 90
@@ -472,7 +472,7 @@ volume:
readinessProbe:
enabled: true
httpGet:
path: /status
path: /healthz
scheme: HTTP
initialDelaySeconds: 15
periodSeconds: 15