-
Notifications
You must be signed in to change notification settings - Fork 70
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
how to implement helm command "helm dependency update" with pyhelm #28
Comments
@flaper87 |
pyhelm does not extract dependencies from Chart.yaml. You are (currently) required to build the chart object you pass to ChartBuilder to contain the dependency definitions in order for them to be used by the library. |
And regarding your first question, I'm not sure I understand. |
@yanivoliver |
Gotcha. pyhelm does not replicate most of the client-side logic of Helm, including not implementing the functionality of the dependency update command. |
@yanivoliver OK... In shell command: when to deploy this chart, need to use helm dep update command to generate some exporters.tgz in charts directory, then use helm install to deploy the whole chart. |
Sorry for the (very very) late response. Is this still relevant? |
@yanivoliver yes this issue is still relevant. It would be great to see this function implemented in PyHelm project. Otherwise, could you provide an implementation guide? Thanks a lot. |
some command like "helm dep update"
how to implement this function?
The text was updated successfully, but these errors were encountered: