You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For complex Helm charts where additional resource files and manifest templates are split into multiple files and directories, it can be useful to allow programatic enumeration of the files within the chart to help generate documentation.
For example I have a large chart that splits up many micro-service components into ./templates/components/COMPONENT.yaml.
This is useful for splitting discrete tables of .Values documentation out per component. At the moment I have to create a list with all the component names in manually so that it can be looped around.
Adding a .Files interface in the same way that Helm does would be very helpful. Specifically being able to use .Files.Glob would be fantastic.
For complex Helm charts where additional resource files and manifest templates are split into multiple files and directories, it can be useful to allow programatic enumeration of the files within the chart to help generate documentation.
For example I have a large chart that splits up many micro-service components into
./templates/components/COMPONENT.yaml
.This is useful for splitting discrete tables of
.Values
documentation out per component. At the moment I have to create a list with all the component names in manually so that it can be looped around.Adding a
.Files
interface in the same way that Helm does would be very helpful. Specifically being able to use.Files.Glob
would be fantastic.https://helm.sh/docs/chart_template_guide/accessing_files/
I have included an example of the specific use-case. Just imagine it with dozens more components instead of 5. :-)
The text was updated successfully, but these errors were encountered: