mirror of
https://github.com/kubevela/kubevela.git
synced 2026-02-14 18:10:21 +00:00
180 lines
4.3 KiB
Go
180 lines
4.3 KiB
Go
package main
|
|
|
|
import (
|
|
"flag"
|
|
"fmt"
|
|
"math/rand"
|
|
"os"
|
|
"runtime"
|
|
"time"
|
|
|
|
"github.com/oam-dev/kubevela/cmd/vela/fake"
|
|
|
|
"github.com/oam-dev/kubevela/version"
|
|
|
|
"github.com/gosuri/uitable"
|
|
|
|
"k8s.io/klog"
|
|
|
|
"github.com/oam-dev/kubevela/api/types"
|
|
|
|
"sigs.k8s.io/controller-runtime/pkg/client/config"
|
|
|
|
"github.com/oam-dev/kubevela/pkg/utils/system"
|
|
|
|
"github.com/crossplane/oam-kubernetes-runtime/apis/core"
|
|
"github.com/spf13/cobra"
|
|
k8sruntime "k8s.io/apimachinery/pkg/runtime"
|
|
clientgoscheme "k8s.io/client-go/kubernetes/scheme"
|
|
|
|
"github.com/oam-dev/kubevela/pkg/cmd"
|
|
cmdutil "github.com/oam-dev/kubevela/pkg/cmd/util"
|
|
"github.com/oam-dev/kubevela/pkg/utils/logs"
|
|
)
|
|
|
|
var (
|
|
scheme = k8sruntime.NewScheme()
|
|
)
|
|
|
|
func init() {
|
|
_ = clientgoscheme.AddToScheme(scheme)
|
|
|
|
_ = core.AddToScheme(scheme)
|
|
// +kubebuilder:scaffold:scheme
|
|
}
|
|
|
|
func main() {
|
|
rand.Seed(time.Now().UnixNano())
|
|
|
|
command := newCommand()
|
|
logs.InitLogs()
|
|
defer logs.FlushLogs()
|
|
|
|
if err := command.Execute(); err != nil {
|
|
os.Exit(1)
|
|
}
|
|
}
|
|
|
|
func newCommand() *cobra.Command {
|
|
ioStream := cmdutil.IOStreams{In: os.Stdin, Out: os.Stdout, ErrOut: os.Stderr}
|
|
|
|
cmds := &cobra.Command{
|
|
Use: "vela",
|
|
DisableFlagParsing: true,
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
allCommands := cmd.Commands()
|
|
cmd.Printf("✈️ A Micro App Platform for Kubernetes.\n\nUsage:\n vela [flags]\n vela [command]\n\nAvailable Commands:\n\n")
|
|
PrintHelpByTag(cmd, allCommands, types.TypeStart)
|
|
PrintHelpByTag(cmd, allCommands, types.TypeApp)
|
|
PrintHelpByTag(cmd, allCommands, types.TypeTraits)
|
|
PrintHelpByTag(cmd, allCommands, types.TypeOthers)
|
|
PrintHelpByTag(cmd, allCommands, types.TypeSystem)
|
|
cmd.Println("Flags:")
|
|
cmd.Println(" -h, --help help for vela")
|
|
cmd.Println()
|
|
cmd.Println(`Use "vela [command] --help" for more information about a command.`)
|
|
},
|
|
SilenceUsage: true,
|
|
ValidArgsFunction: func(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {
|
|
return nil, cobra.ShellCompDirectiveNoFileComp
|
|
},
|
|
}
|
|
cmds.PersistentFlags().StringP("env", "e", "", "specify env name for application")
|
|
restConf, err := config.GetConfig()
|
|
if err != nil {
|
|
fmt.Println("get kubeconfig err", err)
|
|
os.Exit(1)
|
|
}
|
|
|
|
commandArgs := types.Args{
|
|
Config: restConf,
|
|
Schema: scheme,
|
|
}
|
|
|
|
if err := system.InitDirs(); err != nil {
|
|
fmt.Println("InitDir err", err)
|
|
os.Exit(1)
|
|
}
|
|
|
|
cmds.AddCommand(
|
|
// Getting Start
|
|
cmd.NewEnvCommand(commandArgs, ioStream),
|
|
|
|
// Getting Start
|
|
NewVersionCommand(),
|
|
|
|
// Apps
|
|
cmd.NewAppsCommand(commandArgs, ioStream),
|
|
|
|
// Workloads
|
|
cmd.AddCompCommands(commandArgs, ioStream),
|
|
|
|
// Capability Systems
|
|
cmd.CapabilityCommandGroup(commandArgs, ioStream),
|
|
|
|
// System
|
|
cmd.SystemCommandGroup(commandArgs, ioStream),
|
|
cmd.NewCompletionCommand(),
|
|
|
|
cmd.NewTraitsCommand(ioStream),
|
|
cmd.NewWorkloadsCommand(ioStream),
|
|
|
|
cmd.NewDashboardCommand(commandArgs, ioStream, fake.FrontendSource),
|
|
|
|
cmd.NewLogsCommand(commandArgs, ioStream),
|
|
)
|
|
|
|
// Traits
|
|
if err = cmd.AddTraitCommands(cmds, commandArgs, ioStream); err != nil {
|
|
fmt.Println("Add trait commands from traitDefinition err", err)
|
|
os.Exit(1)
|
|
}
|
|
|
|
// this is for mute klog
|
|
fset := flag.NewFlagSet("logs", flag.ContinueOnError)
|
|
klog.InitFlags(fset)
|
|
_ = fset.Set("v", "-1")
|
|
return cmds
|
|
}
|
|
|
|
func PrintHelpByTag(cmd *cobra.Command, all []*cobra.Command, tag string) {
|
|
cmd.Printf(" %s:\n\n", tag)
|
|
table := uitable.New()
|
|
for _, c := range all {
|
|
if val, ok := c.Annotations[types.TagCommandType]; ok && val == tag {
|
|
table.AddRow(" "+c.Use, c.Long)
|
|
for _, subcmd := range c.Commands() {
|
|
table.AddRow(" "+subcmd.Use, " "+subcmd.Long)
|
|
}
|
|
}
|
|
}
|
|
cmd.Println(table.String())
|
|
if tag == types.TypeTraits {
|
|
if len(table.Rows) > 0 {
|
|
cmd.Println()
|
|
}
|
|
cmd.Println(" Want more? < install more capabilities by `vela cap` >")
|
|
}
|
|
cmd.Println()
|
|
}
|
|
|
|
func NewVersionCommand() *cobra.Command {
|
|
return &cobra.Command{
|
|
Use: "version",
|
|
Short: "Prints out build version information",
|
|
Long: "Prints out build version information",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
fmt.Printf(`Version: %v
|
|
GitRevision: %v
|
|
GolangVersion: %v
|
|
`,
|
|
version.VelaVersion,
|
|
version.GitRevision,
|
|
runtime.Version())
|
|
},
|
|
Annotations: map[string]string{
|
|
types.TagCommandType: types.TypeStart,
|
|
},
|
|
}
|
|
}
|