Skip to content

Commit

Permalink
Fix incorrect format string template for extraConfig (%s -> %d): fix …
Browse files Browse the repository at this point in the history
…CM tpl
  • Loading branch information
ps78674 committed Dec 6, 2024
1 parent 3a322df commit 5d0ce3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion charts/netbox/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ data:

{{- range $index, $config := .Values.extraConfig }}
{{- if $config.values }}
{{ printf "extra-%s.yaml" $index }}: |-
{{ printf "extra-%d.yaml" $index | quote }}: |-
{{- include "common.tplvalues.render" (dict "value" $config.values "context" $) | nindent 4 }}
{{- end }}
{{- end }}

0 comments on commit 5d0ce3e

Please sign in to comment.