talos/internal/app/osctl/cmd/root.go
2018-12-19 22:22:05 -08:00

38 lines
756 B
Go

package cmd
import (
"fmt"
"os"
"github.com/spf13/cobra"
)
var (
ca string
crt string
key string
isContainer bool
organization string
rsa bool
name string
csr string
ip string
hours int
)
// rootCmd represents the base command when called without any subcommands
var rootCmd = &cobra.Command{
Use: "osctl",
Short: "A CLI for out-of-band management of Kubernetes nodes created by Talos",
Long: ``,
}
// Execute adds all child commands to the root command and sets flags appropriately.
// This is called by main.main(). It only needs to happen once to the rootCmd.
func Execute() {
if err := rootCmd.Execute(); err != nil {
fmt.Println(err)
os.Exit(1)
}
}