From 6a698713fafccbf22320ce75a4995ae8e83a17fe Mon Sep 17 00:00:00 2001 From: dave-b-code <54420411+dave-b-code@users.noreply.github.com> Date: Sun, 27 Feb 2022 15:01:18 +0000 Subject: [PATCH] Fix liveness and readiness probe endpoint Uses endpoint from #2245 --- k8s/helm_charts2/templates/s3-deployment.yaml | 4 ++-- 1 file 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