Skip to content

Commit 8aa0fa9

Browse files
committed
Increased tolerance for readinessProbe and livenessProbe.
1 parent 3ebe295 commit 8aa0fa9

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

charts/stac-manager/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ apiVersion: v2
88

99
name: stac-manager
1010
description: Helm chart deployment for web application to update collection and item meta data in STAC catalogs
11-
version: "0.0.5"
11+
version: "0.0.6"
1212
sources:
1313
- https://github.com/developmentseed/stac-manager
1414

1515
type: application
16-
appVersion: "0.0.5"
16+
appVersion: "0.0.6"
1717

1818
maintainers:
1919
- name: Development Seed. All Rights Reserved.

charts/stac-manager/values.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,19 @@ livenessProbe:
4343
httpGet:
4444
path: /
4545
port: http
46+
initialDelaySeconds: 60
47+
timeoutSeconds: 10
48+
periodSeconds: 5
49+
failureThreshold: 3
50+
4651
readinessProbe:
4752
httpGet:
4853
path: /
4954
port: http
55+
initialDelaySeconds: 30
56+
timeoutSeconds: 10
57+
periodSeconds: 5
58+
failureThreshold: 3
5059

5160
autoscaling:
5261
enabled: false

0 commit comments

Comments
 (0)