mirror of
https://github.com/siderolabs/talos.git
synced 2025-08-07 07:07:10 +02:00
38 lines
756 B
Go
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)
|
|
}
|
|
}
|