Merge pull request #5 from jbalonso/fix-indentation

🐛 increase indentation levels for proper YAML
This commit is contained in:
Ettore Di Giacinto
2022-11-18 11:14:15 +01:00
committed by GitHub

View File

@@ -21,7 +21,7 @@ spec:
spec: spec:
{{- with .Values.imagePullSecrets }} {{- with .Values.imagePullSecrets }}
imagePullSecrets: imagePullSecrets:
{{- toYaml . | nindent 6 }} {{- toYaml . | nindent 14 }}
{{- end }} {{- end }}
containers: containers:
- args: - args:
@@ -78,13 +78,13 @@ spec:
terminationGracePeriodSeconds: 10 terminationGracePeriodSeconds: 10
{{- with .Values.nodeSelector }} {{- with .Values.nodeSelector }}
nodeSelector: nodeSelector:
{{- toYaml . | nindent 8 }} {{- toYaml . | nindent 14 }}
{{- end }} {{- end }}
{{- with .Values.affinity }} {{- with .Values.affinity }}
affinity: affinity:
{{- toYaml . | nindent 8 }} {{- toYaml . | nindent 14 }}
{{- end }} {{- end }}
{{- with .Values.tolerations }} {{- with .Values.tolerations }}
tolerations: tolerations:
{{- toYaml . | nindent 8 }} {{- toYaml . | nindent 14 }}
{{- end }} {{- end }}