Browse Source

Fix liveness and readiness probe endpoint

Uses endpoint from #2245
pull/2716/head
dave-b-code 3 years ago
committed by GitHub
parent
commit
6a698713fa
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      k8s/helm_charts2/templates/s3-deployment.yaml

4
k8s/helm_charts2/templates/s3-deployment.yaml

@ -130,7 +130,7 @@ spec:
name: swfs-s3 name: swfs-s3
readinessProbe: readinessProbe:
httpGet: httpGet:
path: /
path: /status
port: {{ .Values.s3.port }} port: {{ .Values.s3.port }}
scheme: HTTP scheme: HTTP
initialDelaySeconds: 15 initialDelaySeconds: 15
@ -140,7 +140,7 @@ spec:
timeoutSeconds: 10 timeoutSeconds: 10
livenessProbe: livenessProbe:
httpGet: httpGet:
path: /
path: /status
port: {{ .Values.s3.port }} port: {{ .Values.s3.port }}
scheme: HTTP scheme: HTTP
initialDelaySeconds: 20 initialDelaySeconds: 20

Loading…
Cancel
Save