Skip to content

Commit

Permalink
fix: πŸ› missing quote on experimental plugin args
Browse files Browse the repository at this point in the history
  • Loading branch information
mloiseleur committed Jan 12, 2024
1 parent e404db9 commit e7ce1b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions traefik/templates/_podtemplate.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -521,8 +521,8 @@
{{- if or (ne (typeOf $plugin) "map[string]interface {}") (not (hasKey $plugin "moduleName")) (not (hasKey $plugin "version")) }}
{{- fail (printf "ERROR: plugin %s is missing moduleName/version keys !" $pluginName) }}
{{- end }}
- --experimental.plugins.{{ $pluginName }}.moduleName={{ $plugin.moduleName }}
- --experimental.plugins.{{ $pluginName }}.version={{ $plugin.version }}
- "--experimental.plugins.{{ $pluginName }}.moduleName={{ $plugin.moduleName }}"
- "--experimental.plugins.{{ $pluginName }}.version={{ $plugin.version }}"
{{- end }}
{{- if .Values.providers.kubernetesCRD.enabled }}
- "--providers.kubernetescrd"
Expand Down

0 comments on commit e7ce1b4

Please sign in to comment.