P4DEVOPS-11504: fix corrupted files - use plain text YAML

This commit is contained in:
Mahima Singh 2026-05-05 17:05:20 +05:30
parent ceabe6de57
commit 904439b62a
2 changed files with 237 additions and 1 deletions

View file

@ -177,3 +177,15 @@ spec:
tolerations: tolerations:
{{- toYaml . | nindent 8 }} {{- toYaml . | nindent 8 }}
{{- end }} {{- end }}
{{- with .Values.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.affinity }}
affinity:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.tolerations }}
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}

File diff suppressed because one or more lines are too long