From d445b001b1f1d8d0d604d7940d9f413149159c1b Mon Sep 17 00:00:00 2001 From: Ben Vincent Date: Sat, 2 May 2026 22:25:58 +1000 Subject: [PATCH] chore: fix livenessProbe for paperclip --- apps/base/paperclip/deployment.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/base/paperclip/deployment.yaml b/apps/base/paperclip/deployment.yaml index cc6c46b..f53b809 100644 --- a/apps/base/paperclip/deployment.yaml +++ b/apps/base/paperclip/deployment.yaml @@ -63,7 +63,7 @@ spec: name: paperclip-credentials livenessProbe: httpGet: - path: / + path: /api/health port: 3100 failureThreshold: 3 initialDelaySeconds: 30 @@ -72,7 +72,7 @@ spec: timeoutSeconds: 5 readinessProbe: httpGet: - path: / + path: /api/health port: 3100 failureThreshold: 3 initialDelaySeconds: 10