Merge pull request #3292 from Shell32-Natsu/helm-extra-args

Add field extraArgs to helm generator
This commit is contained in:
Kubernetes Prow Robot
2020-11-30 19:50:49 -08:00
committed by GitHub
3 changed files with 12 additions and 7 deletions

View File

@@ -133,6 +133,7 @@ func (p *HelmChartInflationGeneratorPlugin) getTemplateCommandArgs() []string {
if p.Values != "" {
args = append(args, "--values", p.Values)
}
args = append(args, p.ExtraArgs...)
return args
}