Merge branch 'master' into values-arent-global

This commit is contained in:
Erin Call
2020-01-02 12:29:15 -08:00
6 changed files with 14 additions and 1 deletions

View File

@@ -10,6 +10,7 @@ type Lint struct {
Values string
StringValues string
ValuesFiles []string
Strict bool
cmd cmd
}
@@ -44,6 +45,9 @@ func (l *Lint) Prepare(cfg Config) error {
for _, vFile := range l.ValuesFiles {
args = append(args, "--values", vFile)
}
if l.Strict {
args = append(args, "--strict")
}
args = append(args, l.Chart)