pelotech / drone-helm3

Plugin for drone to deploy helm charts using helm3
Apache License 2.0
31 stars 36 forks source link

Look for CLI flags added in helm3; consider implementing them #11

Closed ErinCall closed 4 years ago

ErinCall commented 4 years ago

This is sort of the inverse of #10—helm3 probably added new commands and/or flags, and it may be worthwhile to implement some of them. Compare helm3's CLI options to helm2 and decide whether this plugin should have support for any of the additions. If so, make github issues for "implement such-and-such feature."

ErinCall commented 4 years ago

The set-file global flag is a candidate:

--set-file stringArray set values from respective files specified via the command line (can specify multiple or separate values with commas: key1=path1,key2=path2)

ErinCall commented 4 years ago

I only see a couple interesting flags, but I don't think either one is worth implementing until/unless someone asks for it:

*A flag for upgrade: --history-max int limit the maximum number of revisions saved per release. Use 0 for no limit (default 10)

Nothing to do at this time.