From aea9ee93e88441bb49266995624b68effce498a9 Mon Sep 17 00:00:00 2001 From: Mayne0213 Date: Sat, 10 Jan 2026 02:44:54 +0900 Subject: [PATCH] FIX(jotion): fix health probe path to /home - Change livenessProbe path from / to /home - Change readinessProbe path from / to /home - Resolve 404 error causing pod restart loop --- jotion/helm-values.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/jotion/helm-values.yaml b/jotion/helm-values.yaml index f5ae995..26a2a48 100644 --- a/jotion/helm-values.yaml +++ b/jotion/helm-values.yaml @@ -46,6 +46,24 @@ resources: limits: memory: 128Mi +livenessProbe: + httpGet: + path: /home + port: 3000 + initialDelaySeconds: 30 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 3 + +readinessProbe: + httpGet: + path: /home + port: 3000 + initialDelaySeconds: 5 + periodSeconds: 5 + timeoutSeconds: 1 + failureThreshold: 3 + env: - name: NODE_ENV value: production