aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordave-b-code <54420411+dave-b-code@users.noreply.github.com>2022-02-27 15:01:18 +0000
committerGitHub <noreply@github.com>2022-02-27 15:01:18 +0000
commit6a698713fafccbf22320ce75a4995ae8e83a17fe (patch)
tree19522631346cde64f51065ad853367e834392404
parent09cd00f356c69b12d4f3b7caa8e16255031cc330 (diff)
downloadseaweedfs-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.yaml4
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