Files
charts/clustertool/cmd/helmrelease.go
2024-10-16 14:06:31 +02:00

25 lines
449 B
Go

package cmd
import (
"strings"
"github.com/spf13/cobra"
)
var helmreleaseHelp = strings.TrimSpace(`
A toolkit to load helm-release files onto a cluster without flux
`)
var helmrelease = &cobra.Command{
Use: "helmrelease",
Short: "A toolkit to load helm-release files onto a cluster without flux",
Long: advLongHelp,
SilenceUsage: true,
SilenceErrors: true,
}
func init() {
RootCmd.AddCommand(helmrelease)
}