MCPcopy
hub / github.com/roboll/helmfile / Lint

Method Lint

pkg/helmexec/exec.go:422–427  ·  view source on GitHub ↗
(name, chart string, flags ...string)

Source from the content-addressed store, hash-verified

420}
421
422func (helm *execer) Lint(name, chart string, flags ...string) error {
423 helm.logger.Infof("Linting release=%v, chart=%v", name, chart)
424 out, err := helm.exec(append([]string{"lint", chart}, flags...), map[string]string{})
425 helm.write(nil, out)
426 return err
427}
428
429func (helm *execer) Fetch(chart string, flags ...string) error {
430 helm.logger.Infof("Fetching %v", chart)

Callers

nothing calls this directly

Calls 2

execMethod · 0.95
writeMethod · 0.95

Tested by

no test coverage detected