Skip to content

Commit 8d13ba7

Browse files
authored
fix(lago-data-superset): loosen web probe timeouts (#217)
1 parent d33c1ad commit 8d13ba7

1 file changed

Lines changed: 11 additions & 3 deletions

File tree

charts/lago-data-superset/values.yaml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,28 +71,36 @@ web:
7171
# -- Web container resources
7272
# @section -- Web
7373
resources: {}
74-
# -- Web startup probe (boot runs migrations + bundle import, so allow a generous window)
74+
# -- Web startup probe (boot runs db upgrade + bundle import; budget covers slow metadata DB)
7575
# @section -- Web
7676
startupProbe:
7777
httpGet:
7878
path: /health
7979
port: http
80+
initialDelaySeconds: 15
8081
periodSeconds: 10
82+
timeoutSeconds: 5
8183
failureThreshold: 60
8284
# -- Web liveness probe
8385
# @section -- Web
8486
livenessProbe:
8587
httpGet:
8688
path: /health
8789
port: http
88-
periodSeconds: 15
90+
initialDelaySeconds: 15
91+
periodSeconds: 30
92+
timeoutSeconds: 5
93+
failureThreshold: 5
8994
# -- Web readiness probe
9095
# @section -- Web
9196
readinessProbe:
9297
httpGet:
9398
path: /health
9499
port: http
95-
periodSeconds: 15
100+
initialDelaySeconds: 15
101+
periodSeconds: 30
102+
timeoutSeconds: 5
103+
failureThreshold: 5
96104

97105
worker:
98106
# -- Celery worker replica count

0 commit comments

Comments
 (0)