fix: use /health/readiness probe to bypass 401

This commit is contained in:
Antigravity 2026-05-19 23:21:39 -04:00
parent 9db1b6182b
commit 802241ec49
1 changed files with 2 additions and 2 deletions

View File

@ -52,7 +52,7 @@ spec:
value: "True" value: "True"
livenessProbe: livenessProbe:
httpGet: httpGet:
path: /health path: /health/readiness
port: 4000 port: 4000
initialDelaySeconds: 30 initialDelaySeconds: 30
periodSeconds: 20 periodSeconds: 20
@ -60,7 +60,7 @@ spec:
failureThreshold: 3 failureThreshold: 3
readinessProbe: readinessProbe:
httpGet: httpGet:
path: /health path: /health/readiness
port: 4000 port: 4000
initialDelaySeconds: 10 initialDelaySeconds: 10
periodSeconds: 10 periodSeconds: 10