helm-docs
helm-docs copied to clipboard
Adds AsMap to iterate over .Files.Glob
So you can't use range over the response from .Files.Glob as it doesnt return a map/slice, so I've added a convenience function to return the underlying files map.
So
{{ range $path, $_ := (.Files.Glob "**.yaml") -}}
becomes {{ range $path, $_ := (.Files.Glob "**.yaml").AsMap -}}