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:
{{- 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 }}