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

19 lines
421 B
Go

package cmd
import (
"github.com/carapace-sh/carapace"
"github.com/spf13/cobra"
)
var init_phase_showJoinCommandCmd = &cobra.Command{
Use: "show-join-command",
Short: "Show the join command for control-plane and worker node",
Run: func(cmd *cobra.Command, args []string) {},
}
func init() {
carapace.Gen(init_phase_showJoinCommandCmd).Standalone()
init_phaseCmd.AddCommand(init_phase_showJoinCommandCmd)
}