Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var RootCmd = &cobra.Command{ Use: "minikube", Short: "Minikube is a tool for managing local Kubernetes clusters.", Long: `Minikube is a CLI tool that provisions and manages single-node Kubernetes clusters optimized for development workflows.`, PersistentPreRun: func(cmd *cobra.Command, args []string) { for _, path := range dirs { if err := os.MkdirAll(path, 0777); err != nil { glog.Exitf("Error creating minikube directory: %s", err) } } shouldShowLibmachineLogs := viper.GetBool(showLibmachineLogs) if glog.V(3) { log.SetDebug(true) } if !shouldShowLibmachineLogs { log.SetOutWriter(ioutil.Discard) log.SetErrWriter(ioutil.Discard) } if enableUpdateNotification { notify.MaybePrintUpdateTextFromGithub(os.Stdout) } if enableKubectlDownloadMsg { util.MaybePrintKubectlDownloadMsg() } }, }
RootCmd represents the base command when called without any subcommands
Functions ¶
Types ¶
type ShellConfig ¶ added in v0.7.0
Source Files ¶
Click to show internal directories.
Click to hide internal directories.