From 61754790c6704958203511fd3d3006911d88f7fa Mon Sep 17 00:00:00 2001 From: kappa Date: Thu, 19 Mar 2026 16:28:29 +0900 Subject: [PATCH] Fix n8n health probe endpoint to /healthcheck with longer startup time Co-Authored-By: Claude Opus 4.6 (1M context) --- n8n/deployment.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/n8n/deployment.yaml b/n8n/deployment.yaml index b6d1a61..325e75f 100644 --- a/n8n/deployment.yaml +++ b/n8n/deployment.yaml @@ -52,17 +52,17 @@ spec: value: "3" livenessProbe: httpGet: - path: /healthz + path: /healthcheck port: 5678 - initialDelaySeconds: 30 + initialDelaySeconds: 60 periodSeconds: 30 timeoutSeconds: 5 - failureThreshold: 3 + failureThreshold: 5 readinessProbe: httpGet: - path: /healthz + path: /healthcheck port: 5678 - initialDelaySeconds: 10 + initialDelaySeconds: 30 periodSeconds: 10 timeoutSeconds: 5 failureThreshold: 3