-
Notifications
You must be signed in to change notification settings - Fork 139
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
Keep original manifest filename, support list of files #100
Comments
Hi @ComeBurguburu. Can you please elaborate on which part is missing in helmify for your use-case? As i can see, the bash script handles manifests one-by-one which will not work, because:
This means that all app manifests should be passed to helmify at once. awk 'FNR==1 && NR!=1 {print "---"}{print}' pypi-server-src/*.yaml | helmify pypi-server The script reads all yamls from dir (script can be modified to read recursively and to use other file extensions), separates yaml objects with The best option for overriding values.yaml is to use native helm features for overriding files ( helm install -f myvalues.yaml --set foo=bar |
Hi arttor, I find two issues:
|
got it. in this case, it makes sense to adjust the issue, to support input from the filesystem. |
Hi @ComeBurguburu, the feature implemented in v0.4.0 release. Check it out! |
Hi,
I want to use helmify on many files and keeping original name and mutualise values.yaml
Here is how I run it with bash
The text was updated successfully, but these errors were encountered: