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

26 lines
488 B
Go

package cmd
import (
"strings"
"github.com/spf13/cobra"
)
var advLongHelp = strings.TrimSpace(`
These are all advanced commands that should generally not be needed
`)
var adv = &cobra.Command{
Use: "adv",
Short: "Advanced cluster maintanence commands",
Example: "clustertool adv <bootstrap/health/precommit>",
Long: advLongHelp,
SilenceUsage: true,
SilenceErrors: true,
}
func init() {
RootCmd.AddCommand(adv)
}