Skip to content

Commit f735f92

Browse files
Update charts/ext-proxy/templates/configmap.yaml
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> Signed-off-by: Ales Verbic <verbotenj@gmail.com>
1 parent 51755f5 commit f735f92

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

charts/ext-proxy/templates/configmap.yaml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@ data:
1919
{{- end }}
2020
{{- end }}
2121
{{- end }}
22-
{{- range $filename, $content := .Values.extraConfigs }}
23-
{{ $filename }}: |
24-
{{ $content | indent 4 }}
22+
{{- if hasKey .Values.extraConfigs "tiers.toml" }}
23+
{{- fail "extraConfigs must not contain reserved key 'tiers.toml'" }}
24+
{{- end }}
25+
{{- range $filename := keys .Values.extraConfigs | sortAlpha }}
26+
{{ $filename | quote }}: |
27+
{{ index $.Values.extraConfigs $filename | nindent 4 }}
2528
{{- end }}

0 commit comments

Comments
 (0)