carapace-bin/completers/kubeadm_completer/cmd/init_phase_uploadConfig.go
2025-04-25 18:29:51 +02:00

20 lines
454 B
Go

package cmd
import (
"github.com/carapace-sh/carapace"
"github.com/spf13/cobra"
)
var init_phase_uploadConfigCmd = &cobra.Command{
Use: "upload-config",
Short: "Upload the kubeadm and kubelet configuration to a ConfigMap",
Aliases: []string{"uploadconfig"},
Run: func(cmd *cobra.Command, args []string) {},
}
func init() {
carapace.Gen(init_phase_uploadConfigCmd).Standalone()
init_phaseCmd.AddCommand(init_phase_uploadConfigCmd)
}