39 lines
1.1 KiB
Go
39 lines
1.1 KiB
Go
package cmd
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/helmfile/helmfile/pkg/app"
|
|
"github.com/helmfile/helmfile/pkg/config"
|
|
)
|
|
|
|
// NewPrintEnvCmd returns the print-env subcommand
|
|
func NewPrintEnvCmd(globalCfg *config.GlobalImpl) *cobra.Command {
|
|
printEnvOptions := config.NewPrintEnvOptions()
|
|
|
|
cmd := &cobra.Command{
|
|
Use: "print-env",
|
|
Short: "Print parsed environment configuration",
|
|
Long: "Print parsed environment configuration including merged values (with decrypted secrets). This command outputs the effective environment configuration after merging values and decrypting secrets, in either YAML or JSON format.",
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
printEnvImpl := config.NewPrintEnvImpl(globalCfg, printEnvOptions)
|
|
err := config.NewCLIConfigImpl(printEnvImpl.GlobalImpl)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := printEnvImpl.ValidateConfig(); err != nil {
|
|
return err
|
|
}
|
|
|
|
a := app.New(printEnvImpl)
|
|
return toCLIError(printEnvImpl.GlobalImpl, a.PrintEnv(printEnvImpl))
|
|
},
|
|
}
|
|
|
|
f := cmd.Flags()
|
|
f.StringVar(&printEnvOptions.OutputFormat, "output", "yaml", "output format: yaml or json")
|
|
|
|
return cmd
|
|
}
|