-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Including files in a helm package - is this possible? #74
Comments
This should work as long as the files are inputs to the rule. Can you provide an example of something that works with helm directly but not in |
As far as I can see Try to specify An example is specifying a ConfigMap where the data comes from a file. e.g.
For this to work At the moment we are using |
@msmithson-roku - It sounds like this is your issue? #70 |
#70 allows templates from multiple locations to be packaged into a chart under the templates folder (which is great!). However for this use case, we need to include resources that will not be in the |
Hello! |
Thanks! Sorry for the delay here. I'll take a look as soon as I have bandwidth! |
@abrisco I'm also interested in including a values.schema.json file in my packaged chart. Let me know if I can help get this merged in any way. |
Helm allows you to load files using .Files.get - https://helm.sh/docs/chart_template_guide/accessing_files/
I can't work out a way to include files in the chart root folder using
helm_package
(other than Chart.yaml or values.yaml). Without thisrules_helm
can't be used with chart that use.Files.get
as this is not allowed to access files in thetemplates
folder.Is there a way to do this that I can missing?
The text was updated successfully, but these errors were encountered: