Merge pull request #160 from sirius0xdev/fix/data-service-probes

fix(data-service): probe /health/ready instead of /health
This commit is contained in:
sirius0xdev 2026-05-25 17:18:57 -04:00 committed by GitHub
commit 3643cf40de
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -62,7 +62,7 @@ spec:
key: password key: password
startupProbe: startupProbe:
httpGet: httpGet:
path: /health path: /health/ready
port: 8001 port: 8001
initialDelaySeconds: 15 initialDelaySeconds: 15
periodSeconds: 10 periodSeconds: 10
@ -75,7 +75,7 @@ spec:
periodSeconds: 30 periodSeconds: 30
readinessProbe: readinessProbe:
httpGet: httpGet:
path: /health path: /health/ready
port: 8001 port: 8001
initialDelaySeconds: 5 initialDelaySeconds: 5
periodSeconds: 10 periodSeconds: 10