Files
truecharts/clustertool/cmd/charts.go
T
2024-10-25 18:29:29 +02:00

31 lines
638 B
Go

package cmd
import (
"strings"
"github.com/spf13/cobra"
)
var chartsLongHelp = strings.TrimSpace(`
charttool was a tool to help you build TrueCharts Charts.
It has since been merged into Clustertool as "clustertool charts"
Example commands
> charttool bump 1.2.3 patch
> charttool tagclean soemtag@somedigest
`)
var charts = &cobra.Command{
Use: "charts",
Short: "A tool to help with creating Talos cluster",
Example: "charttool bump 1.2.3 patch",
Long: chartsLongHelp,
SilenceUsage: true,
SilenceErrors: true,
}
func init() {
RootCmd.AddCommand(charts)
}