mirror of
https://github.com/rsteube/carapace-bin.git
synced 2025-05-05 15:32:53 +00:00
20 lines
454 B
Go
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)
|
|
}
|