From cdbceb1396a4ab1d5b2e6f52d31455f052827479 Mon Sep 17 00:00:00 2001 From: Konstantin Grachev Date: Wed, 16 Nov 2022 14:39:18 +0300 Subject: [PATCH] add startupProbe to main process --- templates/n8n-deployment.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/templates/n8n-deployment.yaml b/templates/n8n-deployment.yaml index d2c6e89..451c311 100644 --- a/templates/n8n-deployment.yaml +++ b/templates/n8n-deployment.yaml @@ -52,6 +52,12 @@ spec: httpGet: path: /healthz port: http + startupProbe: + httpGet: + path: /healthz + port: http + failureThreshold: 30 + periodSeconds: 10 resources: {{- toYaml .Values.n8n.resources | nindent 12 }} {{- with .Values.n8n.nodeSelector }}