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
We can do that by using the helm cli flags --repo <REPO_NAME> --version <VERSION> <CHART_NAME>
This would be done in this file here
Benefits
Simplified inventory code
No more locally fetched charts inside output_path: .charts
In addition to the direct benefits listed above, it also allows us to use multiple different chart versions. At the moment this is not possible, because dependencies are extracted to <OUTPUT_PATH>/<CHART_NAME>. So if you fetch 2 different versions of the same chart they will overwrite each other.
The text was updated successfully, but these errors were encountered:
At the moment, in order to use
input_type: helm
we need to declare all of this:I propose we simplify the above, by removing the external dependency and using the helm cli directly to fetch the chart.
We can do that by using the helm cli flags
--repo <REPO_NAME> --version <VERSION> <CHART_NAME>
This would be done in this file here
Benefits
output_path: .charts
<OUTPUT_PATH>/<CHART_NAME>
. So if you fetch 2 different versions of the same chart they will overwrite each other.The text was updated successfully, but these errors were encountered: