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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
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 |
|
|
|