From 347996002dbc24fa1b05aa43d218b2a7efaa6eee Mon Sep 17 00:00:00 2001 From: Dennis Effing Date: Wed, 6 Aug 2025 15:32:58 +0200 Subject: [PATCH] Fix indentation of configured extra volumes --- helm/templates/deployment.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helm/templates/deployment.yaml b/helm/templates/deployment.yaml index 6847669..5bbcbda 100644 --- a/helm/templates/deployment.yaml +++ b/helm/templates/deployment.yaml @@ -148,7 +148,7 @@ spec: {{- if .Values.deployment.extraEnvVars -}} {{ toYaml .Values.deployment.extraEnvVars | nindent 8 }} {{- end }} - {{- if or .Values.aws.credentials.secretName .Values.deployment.extraVolumeMounts }} + {{- if or .Values.aws.credentials.secretName .Values.deployment.extraVolumeMounts }} volumeMounts: {{- if .Values.aws.credentials.secretName }} - name: {{ .Values.aws.credentials.secretName }} @@ -205,7 +205,7 @@ spec: secretName: {{ .Values.aws.credentials.secretName }} {{- end }} {{- if .Values.deployment.extraVolumes }} - {{ toYaml .Values.deployment.extraVolumes | indent 8 }} + {{- toYaml .Values.deployment.extraVolumes | nindent 8 }} {{- end }} {{- end }} {{- with .Values.deployment.strategy }}