Unverified Commit cd088787 authored by Søren Bjerregaard Vrist's avatar Søren Bjerregaard Vrist Committed by GitHub

Use nindent for statefulset tolerations etc. (#159)

* Use nindent Otherwise the first line will be indented up to the existing indent on the line: ``` tolerations: - key: mykeyhere operator: EXISTS ``` vs. ``` tolerations: - key: mykey operator: EXISTS ``` * Bump version
parent 7445a606
...@@ -52,15 +52,15 @@ spec: ...@@ -52,15 +52,15 @@ spec:
{{- with .Values.nodeSelector }} {{- with .Values.nodeSelector }}
nodeSelector: nodeSelector:
{{ toYaml . | indent 8 }} {{ toYaml . | nindent 8 | trim }}
{{- end }} {{- end }}
{{- with .Values.affinity }} {{- with .Values.affinity }}
affinity: affinity:
{{ toYaml . | indent 8 }} {{ toYaml . | nindent 8 | trim }}
{{- end }} {{- end }}
{{- with .Values.tolerations }} {{- with .Values.tolerations }}
tolerations: tolerations:
{{ toYaml . | indent 8 }} {{ toYaml . | nindent 8 | trim }}
{{- end }} {{- end }}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment