From c0aecf125ad0970e14b806935dd1b3943ec7c07c Mon Sep 17 00:00:00 2001 From: CTO Agent Date: Sun, 26 Jul 2026 10:05:50 +0000 Subject: [PATCH] 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 --- apps/paperclip/deployment.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/paperclip/deployment.yaml b/apps/paperclip/deployment.yaml index 36416d0..d184838 100644 --- a/apps/paperclip/deployment.yaml +++ b/apps/paperclip/deployment.yaml @@ -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