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
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

Loading…
Cancel
Save