2025-04-25 18:29:51 +02:00

24 lines
690 B
Go

package cmd
import (
"github.com/carapace-sh/carapace"
"github.com/spf13/cobra"
)
var configCmd = &cobra.Command{
Use: "config",
Short: "Manage configuration for a kubeadm cluster persisted in a ConfigMap in the cluster",
Run: func(cmd *cobra.Command, args []string) {},
}
func init() {
carapace.Gen(configCmd).Standalone()
configCmd.PersistentFlags().String("kubeconfig", "", "The kubeconfig file to use when talking to the cluster. If the flag is not set, a set of standard locations can be searched for an existing kubeconfig file.")
rootCmd.AddCommand(configCmd)
carapace.Gen(configCmd).FlagCompletion(carapace.ActionMap{
"kubeconfig": carapace.ActionFiles(),
})
}