mirror of https://github.com/helm/helm.git
fix(helm): ignore dotfiles in charts/ directories
This causes 'helm dep [up|install]' to ignore files in charts/ that start with either a dot or an underscore. It also changes the chartloader to ignore those files. Also, if a 'helm dep up' does not find a charts/ directory, it creates one. Closes #1342
This commit is contained in:
parent
3c98c512c9
commit
2388e71528
|
@ -173,6 +173,17 @@ func (m *Manager) downloadAll(deps []*chartutil.Dependency) error {
|
|||
HelmHome: m.HelmHome,
|
||||
}
|
||||
|
||||
destPath := filepath.Join(m.ChartPath, "charts")
|
||||
|
||||
// Create 'charts' directory if it doesn't already exist.
|
||||
if fi, err := os.Stat(destPath); err != nil {
|
||||
if err := os.MkdirAll(destPath, 0755); err != nil {
|
||||
return err
|
||||
}
|
||||
} else if !fi.IsDir() {
|
||||
return fmt.Errorf("%q is not a directory", destPath)
|
||||
}
|
||||
|
||||
fmt.Fprintf(m.Out, "Saving %d charts\n", len(deps))
|
||||
for _, dep := range deps {
|
||||
fmt.Fprintf(m.Out, "Downloading %s from repo %s\n", dep.Name, dep.Repository)
|
||||
|
@ -183,8 +194,7 @@ func (m *Manager) downloadAll(deps []*chartutil.Dependency) error {
|
|||
continue
|
||||
}
|
||||
|
||||
dest := filepath.Join(m.ChartPath, "charts")
|
||||
if _, _, err := dl.DownloadTo(churl, "", dest); err != nil {
|
||||
if _, _, err := dl.DownloadTo(churl, "", destPath); err != nil {
|
||||
fmt.Fprintf(m.Out, "WARNING: Could not download %s: %s (skipped)", churl, err)
|
||||
continue
|
||||
}
|
||||
|
@ -257,6 +267,8 @@ func (m *Manager) parallelRepoUpdate(repos []*repo.Entry) {
|
|||
}
|
||||
|
||||
// urlsAreEqual normalizes two URLs and then compares for equality.
|
||||
//
|
||||
// TODO: This and the urlJoin functions should really be moved to a 'urlutil' package.
|
||||
func urlsAreEqual(a, b string) bool {
|
||||
au, err := url.Parse(a)
|
||||
if err != nil {
|
||||
|
|
|
@ -115,6 +115,10 @@ In Helm, one chart may depend on any number of other charts. These
|
|||
dependencies are expressed explicitly by copying the dependency charts
|
||||
into the `charts/` directory.
|
||||
|
||||
A dependency can be either a chart archive (`foo-1.2.3.tgz`) or an
|
||||
unpacked chart directory. But its name cannot start with `_` or `.`.
|
||||
Such files are ignored by the chart loader.
|
||||
|
||||
**Note:** The `dependencies:` section of the `Chart.yaml` from Helm
|
||||
Classic has been completely removed.
|
||||
|
||||
|
@ -141,7 +145,7 @@ on Apache and MySQL by including those charts inside of its `charts/`
|
|||
directory.
|
||||
|
||||
**TIP:** _To drop a dependency into your `charts/` directory, use the
|
||||
`helm fetch` command._
|
||||
`helm fetch` command or use a `requirements.yaml` file_
|
||||
|
||||
### Managing Dependencies with `requirements.yaml`
|
||||
|
||||
|
|
|
@ -125,6 +125,10 @@ func loadFiles(files []*afile) (*chart.Chart, error) {
|
|||
continue
|
||||
}
|
||||
cname := strings.TrimPrefix(f.name, "charts/")
|
||||
if strings.IndexAny(cname, "._") == 0 {
|
||||
// Ignore charts/ that start with . or _.
|
||||
continue
|
||||
}
|
||||
parts := strings.SplitN(cname, "/", 2)
|
||||
scname := parts[0]
|
||||
subcharts[scname] = append(subcharts[scname], &afile{name: cname, data: f.data})
|
||||
|
@ -141,7 +145,9 @@ func loadFiles(files []*afile) (*chart.Chart, error) {
|
|||
for n, files := range subcharts {
|
||||
var sc *chart.Chart
|
||||
var err error
|
||||
if filepath.Ext(n) == ".tgz" {
|
||||
if strings.IndexAny(n, "_.") == 0 {
|
||||
continue
|
||||
} else if filepath.Ext(n) == ".tgz" {
|
||||
file := files[0]
|
||||
if file.name != n {
|
||||
return c, fmt.Errorf("error unpacking tar in %s: expected %s, got %s", c.Metadata.Name, n, file.name)
|
||||
|
|
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
This should be ignored by the loader, but may be included in a chart.
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue