feat: add devel options for helmcharts

This commit is contained in:
milkshake308
2025-02-12 23:52:47 +01:00
parent 3be1af6798
commit c5f69b002f
3 changed files with 12 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
}