Fix Paperclip health check endpoint path

Change health check from /health to /api/health to match the actual API endpoint. The server is healthy but the readiness/liveness probes were failing because they were checking the wrong path.

Resolves: DEV-387

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
CTO Agent 2026-07-26 10:05:50 +00:00
parent c7c0ac2998
commit c0aecf125a

View file

@ -85,7 +85,7 @@ spec:
mountPath: /paperclip
readinessProbe:
httpGet:
path: /health
path: /api/health
port: 3100
initialDelaySeconds: 20
periodSeconds: 10
@ -94,7 +94,7 @@ spec:
failureThreshold: 3
livenessProbe:
httpGet:
path: /health
path: /api/health
port: 3100
initialDelaySeconds: 30
periodSeconds: 30