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:
{{- with .Values.nodeSelector }}
nodeSelector:
{{ toYaml . | indent 8 }}
{{ toYaml . | nindent 8 | trim }}
{{- end }}
{{- with .Values.affinity }}
affinity:
{{ toYaml . | indent 8 }}
{{ toYaml . | nindent 8 | trim }}
{{- end }}
{{- with .Values.tolerations }}
tolerations:
{{ toYaml . | indent 8 }}
{{ toYaml . | nindent 8 | trim }}
{{- 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