40 lines
1.1 KiB
Go
40 lines
1.1 KiB
Go
package cmd
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/helmfile/helmfile/pkg/app"
|
|
"github.com/helmfile/helmfile/pkg/config"
|
|
)
|
|
|
|
// NewDestroyCmd returns destroy subcmd
|
|
func NewDestroyCmd(globalCfg *config.GlobalImpl) *cobra.Command {
|
|
destroyOptions := config.NewDestroyOptions()
|
|
|
|
cmd := &cobra.Command{
|
|
Use: "destroy",
|
|
Short: "Destroys and then purges releases",
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
destroyImpl := config.NewDestroyImpl(globalCfg, destroyOptions)
|
|
err := config.NewCLIConfigImpl(destroyImpl.GlobalImpl)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := destroyImpl.ValidateConfig(); err != nil {
|
|
return err
|
|
}
|
|
|
|
a := app.New(destroyImpl)
|
|
return toCLIError(destroyImpl.GlobalImpl, a.Destroy(destroyImpl))
|
|
},
|
|
}
|
|
|
|
f := cmd.Flags()
|
|
f.StringVar(&globalCfg.GlobalOptions.Args, "args", "", "pass args to helm exec")
|
|
f.IntVar(&destroyOptions.Concurrency, "concurrency", 0, "maximum number of concurrent helm processes to run, 0 is unlimited")
|
|
f.BoolVar(&destroyOptions.SkipCharts, "skip-charts", false, "don't prepare charts when destroying releases")
|
|
|
|
return cmd
|
|
}
|