Documentation
¶
Index ¶
- Constants
- Variables
- func Execute()
- func GenerateBashCompletion(w io.Writer, cmd *cobra.Command) error
- func GenerateZshCompletion(out io.Writer, cmd *cobra.Command) error
- func GetClusterBootstrapper(api libmachine.API, bootstrapperName string) (bootstrapper.Bootstrapper, error)
- func LoadCachedImagesInConfigFile() error
- type CacheListTemplate
- type EnvNoProxyGetter
- type LibmachineShellDetector
- type NoProxyGetter
- type ShellConfig
- type ShellDetector
- type Status
Constants ¶
View Source
const ()
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) } } if !glog.V(3) { log.SetOutWriter(ioutil.Discard) log.SetErrWriter(ioutil.Discard) } if glog.V(7) { log.SetDebug(true) } logDir := pflag.Lookup("log_dir") if !logDir.Changed { logDir.Value.Set(constants.MakeMiniPath("logs")) } if enableUpdateNotification { notify.MaybePrintUpdateTextFromGithub(os.Stderr) } util.MaybePrintKubectlDownloadMsg(runtime.GOOS, os.Stderr) }, }
RootCmd represents the base command when called without any subcommands
Functions ¶
func Execute ¶
func Execute()
Execute adds all child commands to the root command sets flags appropriately. This is called by main.main(). It only needs to happen once to the rootCmd.
func GenerateBashCompletion ¶ added in v0.12.1
func GenerateZshCompletion ¶ added in v0.24.0
func GetClusterBootstrapper ¶ added in v0.22.0
func GetClusterBootstrapper(api libmachine.API, bootstrapperName string) (bootstrapper.Bootstrapper, error)
GetClusterBootstrapper returns a new bootstrapper for the cluster
func LoadCachedImagesInConfigFile ¶ added in v0.24.0
func LoadCachedImagesInConfigFile() error
LoadCachedImagesInConfigFile loads the images currently in the config file (minikube start)
Types ¶
type CacheListTemplate ¶ added in v0.25.0
type CacheListTemplate struct {
CacheImage string
}
type EnvNoProxyGetter ¶ added in v0.17.0
type EnvNoProxyGetter struct{}
func (EnvNoProxyGetter) GetNoProxyVar ¶ added in v0.17.0
func (EnvNoProxyGetter) GetNoProxyVar() (string, string)
type LibmachineShellDetector ¶ added in v0.17.0
type LibmachineShellDetector struct{}
type NoProxyGetter ¶ added in v0.17.0
type ShellConfig ¶ added in v0.7.0
type ShellDetector ¶ added in v0.17.0
Source Files
¶
Click to show internal directories.
Click to hide internal directories.