Merge branch 'master' into helm-delete

This commit is contained in:
Erin Call
2019-12-19 11:34:44 -08:00
4 changed files with 257 additions and 1 deletions

View File

@@ -62,7 +62,7 @@ func determineSteps(cfg Config) *func(Config) []Step {
case "delete":
return &del
case "lint":
panic("not implemented")
return &lint
case "help":
return &help
default:
@@ -119,6 +119,14 @@ var del = func(cfg Config) []Step {
return steps
}
var lint = func(cfg Config) []Step {
lint := &run.Lint{
Chart: cfg.Chart,
}
return []Step{lint}
}
var help = func(cfg Config) []Step {
help := &run.Help{}
return []Step{help}