From c9f05658cf2ec26d5033e95009eef9b34190383a Mon Sep 17 00:00:00 2001 From: "Jason B. Alonso" Date: Thu, 17 Nov 2022 21:57:11 +0000 Subject: [PATCH] :bug: increase indentation levels for proper YAML A number of `{{- toYaml . | nindent 8 }}` expressions were present such that `nindent` would render text at an insufficient indentation level to produce the intended YAML. Signed-off-by: Jason Bernardino Alonso --- charts/osbuilder/templates/deployment.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/charts/osbuilder/templates/deployment.yaml b/charts/osbuilder/templates/deployment.yaml index c2af34d..5d12cd9 100644 --- a/charts/osbuilder/templates/deployment.yaml +++ b/charts/osbuilder/templates/deployment.yaml @@ -21,7 +21,7 @@ spec: spec: {{- with .Values.imagePullSecrets }} imagePullSecrets: - {{- toYaml . | nindent 6 }} + {{- toYaml . | nindent 14 }} {{- end }} containers: - args: @@ -78,13 +78,13 @@ spec: terminationGracePeriodSeconds: 10 {{- with .Values.nodeSelector }} nodeSelector: - {{- toYaml . | nindent 8 }} + {{- toYaml . | nindent 14 }} {{- end }} {{- with .Values.affinity }} affinity: - {{- toYaml . | nindent 8 }} + {{- toYaml . | nindent 14 }} {{- end }} {{- with .Values.tolerations }} tolerations: - {{- toYaml . | nindent 8 }} + {{- toYaml . | nindent 14 }} {{- end }} \ No newline at end of file