Add field extraArgs to helm generator

This commit is contained in:
Donny Xia
2020-11-30 14:22:25 -08:00
parent 5279ad904b
commit 2bf73c60c3
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
}