Browse Source

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

feat: #1627 use `/healthz` as default route in readinessProbe/livenessProbe of volume server
pull/5996/head
wangtao 3 months ago
committed by GitHub
parent
commit
0c0666055b
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      k8s/charts/seaweedfs/values.yaml

4
k8s/charts/seaweedfs/values.yaml

@ -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

Loading…
Cancel
Save