Helmfile has been providing a feature called "adhoc chart dependency" that basially enabled you to add Chart.yaml `dependencies` entry adhocly without forking or modifying the chart. It was missing the support for using a local chart as the adhoc dependency. This patch adds that. Usage: `releases[].dependencies[].chart` is enhanced to accept the fs path to the local chart: ``` releases: - name: foo chart: ./path/to/foo dependencies: - chart: ./path/to/bar ``` Resolves #1762 |
||
|---|---|---|
| .. | ||
| testdata | ||
| chart_dependency.go | ||
| create.go | ||
| create_test.go | ||
| environment.go | ||
| envvals_loader.go | ||
| envvals_loader_test.go | ||
| helmx.go | ||
| release.go | ||
| release_error.go | ||
| release_filters.go | ||
| selector_test.go | ||
| state.go | ||
| state_exec_tmpl.go | ||
| state_exec_tmpl_test.go | ||
| state_gogetter_test.go | ||
| state_run.go | ||
| state_test.go | ||
| storage.go | ||
| temp.go | ||
| temp_rand.go | ||
| temp_test.go | ||
| types.go | ||
| util.go | ||
| util_test.go | ||