Browse Source

Merge pull request #2716 from dave-b-code/patch-1

Fix S3 liveness and readiness probe endpoint
pull/2727/head
Chris Lu 3 years ago
committed by GitHub
parent
commit
ca0cd81a75
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