set the backend to call /health instead /api/health

This commit is contained in:
dvirlabs 2025-12-17 07:59:52 +02:00
parent f67a74c160
commit 32cf8cc602

View File

@ -51,7 +51,7 @@ spec:
key: DATABASE_URL key: DATABASE_URL
startupProbe: startupProbe:
httpGet: httpGet:
path: /api/health path: /health
port: http port: http
initialDelaySeconds: 15 initialDelaySeconds: 15
periodSeconds: 5 periodSeconds: 5
@ -59,7 +59,7 @@ spec:
failureThreshold: 30 failureThreshold: 30
livenessProbe: livenessProbe:
httpGet: httpGet:
path: /api/health path: /health
port: http port: http
initialDelaySeconds: 30 initialDelaySeconds: 30
periodSeconds: 10 periodSeconds: 10
@ -67,7 +67,7 @@ spec:
failureThreshold: 3 failureThreshold: 3
readinessProbe: readinessProbe:
httpGet: httpGet:
path: /api/health path: /health
port: http port: http
initialDelaySeconds: 10 initialDelaySeconds: 10
periodSeconds: 5 periodSeconds: 5