From 1039795fc37e6331ed9768438cbb3683731ea13e Mon Sep 17 00:00:00 2001 From: Erik Godding Boye Date: Sun, 15 Oct 2023 14:06:07 +0200 Subject: [PATCH] fix(helm): controller.extraArgs should be treated as list --- charts/accurate/templates/deployment.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/charts/accurate/templates/deployment.yaml b/charts/accurate/templates/deployment.yaml index 9a69f56..8db33ed 100644 --- a/charts/accurate/templates/deployment.yaml +++ b/charts/accurate/templates/deployment.yaml @@ -27,7 +27,8 @@ spec: imagePullPolicy: {{ . }} {{- end }} {{- with .Values.controller.extraArgs }} - args: {{ . }} + args: + {{- toYaml . | nindent 12 }} {{- end }} ports: - containerPort: 9443