From ad67411ae09c4773fa4fb2a7e647b0c62ae3b673 Mon Sep 17 00:00:00 2001 From: Guilhem Lavaux Date: Wed, 4 Dec 2024 22:42:05 +0100 Subject: [PATCH] Fix command --- templates/deployment.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/deployment.yaml b/templates/deployment.yaml index 528fd75..8983287 100644 --- a/templates/deployment.yaml +++ b/templates/deployment.yaml @@ -87,9 +87,9 @@ spec: image: "{{ .Values.updater.image.repository }}:{{ .Values.updater.image.tag }}" imagePullPolicy: {{ .Values.updater.image.pullPolicy }} {{- if .Values.updater.ssh.enabled }} - command: ["/webhook-runner.sh ssh"] + command: ["/webhook-runner.sh", "ssh"] {{- else }} - command: ["/webhook-runner.sh http"] + command: ["/webhook-runner.sh", "http"] {{- end }} ports: - containerPort: 8000