Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var RootCmd = &cobra.Command{ Use: "kubecfg", Short: "Synchronise Kubernetes resources with config files", SilenceErrors: true, SilenceUsage: true, PersistentPreRunE: func(cmd *cobra.Command, args []string) error { goflag.CommandLine.Parse([]string{}) flags := cmd.Flags() out := cmd.OutOrStderr() log.SetOutput(out) logFmt := NewLogFormatter(out) log.SetFormatter(logFmt) verbosity, err := flags.GetCount(flagVerbose) if err != nil { return err } log.SetLevel(logLevel(verbosity)) logflags := goflag.NewFlagSet(os.Args[0], goflag.ExitOnError) klog.InitFlags(logflags) logflags.Set("logtostderr", "true") if verbosity >= 2 { logflags.Set("v", fmt.Sprintf("%d", verbosity*3)) } return nil }, }
RootCmd is the root of cobra subcommand tree
View Source
var Version = "(dev build)"
Version is overridden by main
Functions ¶
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.