aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lu <chrislusf@users.noreply.github.com>2022-02-28 10:10:59 -0800
committerGitHub <noreply@github.com>2022-02-28 10:10:59 -0800
commitca0cd81a75b1bdce429ab3b32724bf6a40097a03 (patch)
tree0f810c2521b4fd6d9e80aaa39a6ec59764a8c9bf
parent80c017907b936da411b713c5dcca2ba865288454 (diff)
parent6a698713fafccbf22320ce75a4995ae8e83a17fe (diff)
downloadseaweedfs-ca0cd81a75b1bdce429ab3b32724bf6a40097a03.tar.xz
seaweedfs-ca0cd81a75b1bdce429ab3b32724bf6a40097a03.zip
Merge pull request #2716 from dave-b-code/patch-1
Fix S3 liveness and readiness probe endpoint
-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