Merge pull request #5865 from milkshake308/feat_helm_devel_arg

feat(helm): allow the use of devel alias for helmcharts
This commit is contained in:
Kubernetes Prow Robot
2025-05-17 12:25:16 -07:00
committed by GitHub
5 changed files with 70 additions and 0 deletions

View File

@@ -337,6 +337,9 @@ func (p *HelmChartInflationGeneratorPlugin) pullCommand() []string {
if p.Version != "" {
args = append(args, "--version", p.Version)
}
if p.Devel {
args = append(args, "--devel")
}
return args
}