diff options
| author | dave-b-code <54420411+dave-b-code@users.noreply.github.com> | 2022-02-27 15:01:18 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-27 15:01:18 +0000 |
| commit | 6a698713fafccbf22320ce75a4995ae8e83a17fe (patch) | |
| tree | 19522631346cde64f51065ad853367e834392404 | |
| parent | 09cd00f356c69b12d4f3b7caa8e16255031cc330 (diff) | |
| download | seaweedfs-6a698713fafccbf22320ce75a4995ae8e83a17fe.tar.xz seaweedfs-6a698713fafccbf22320ce75a4995ae8e83a17fe.zip | |
Fix liveness and readiness probe endpoint
Uses endpoint from #2245
| -rw-r--r-- | k8s/helm_charts2/templates/s3-deployment.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/k8s/helm_charts2/templates/s3-deployment.yaml b/k8s/helm_charts2/templates/s3-deployment.yaml index e5abcf887..2638c7f56 100644 --- a/k8s/helm_charts2/templates/s3-deployment.yaml +++ b/k8s/helm_charts2/templates/s3-deployment.yaml @@ -130,7 +130,7 @@ spec: name: swfs-s3 readinessProbe: httpGet: - path: / + path: /status port: {{ .Values.s3.port }} scheme: HTTP initialDelaySeconds: 15 @@ -140,7 +140,7 @@ spec: timeoutSeconds: 10 livenessProbe: httpGet: - path: / + path: /status port: {{ .Values.s3.port }} scheme: HTTP initialDelaySeconds: 20 |
