From 135f1aa0da93246f7eebe3d611bcb5fb3d3f5874 Mon Sep 17 00:00:00 2001 From: Dennis Effing Date: Fri, 8 Aug 2025 14:17:23 +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 5bcf606..0eda68a 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 }}