mirror of
https://github.com/rsteube/carapace-bin.git
synced 2025-05-05 15:32:53 +00:00
19 lines
429 B
Go
19 lines
429 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/carapace-sh/carapace"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var join_phase_controlPlanePrepareCmd = &cobra.Command{
|
|
Use: "control-plane-prepare",
|
|
Short: "Prepare the machine for serving a control plane",
|
|
Run: func(cmd *cobra.Command, args []string) {},
|
|
}
|
|
|
|
func init() {
|
|
carapace.Gen(join_phase_controlPlanePrepareCmd).Standalone()
|
|
|
|
join_phaseCmd.AddCommand(join_phase_controlPlanePrepareCmd)
|
|
}
|