From 04b7c04366f3457b4db5a13174570dfc4f718f8b Mon Sep 17 00:00:00 2001 From: Ben Vincent Date: Sat, 2 May 2026 22:28:52 +1000 Subject: [PATCH] chore: fix livenessProbe for paperclip (#105) Reviewed-on: https://git.unkin.net/unkin/argocd-apps/pulls/105 --- 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