feat: Add probes to worker service (#7896)

* feat: Add probes to worker service

* feat: Add probes to worker service

* Merge branch 'master' into pr/7896

* refactor

---------

Co-authored-by: Chris Lu <chris.lu@gmail.com>
This commit is contained in:
Sheya Bernstein
2025-12-27 21:40:05 +00:00
committed by GitHub
parent ef20873c31
commit 915a7d4a54
4 changed files with 44 additions and 6 deletions

View File

@@ -1306,7 +1306,7 @@ worker:
extraEnvironmentVars: {}
# Health checks for worker pods
# Workers expose metrics on the metricsPort with a /health endpoint for readiness checks.
# Workers expose /health (liveness) and /ready (readiness) endpoints on the metricsPort
livenessProbe:
enabled: true
httpGet:
@@ -1321,7 +1321,7 @@ worker:
readinessProbe:
enabled: true
httpGet:
path: /health
path: /ready
port: metrics
initialDelaySeconds: 20
periodSeconds: 15