cmd

package
v0.25.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 26, 2018 License: Apache-2.0 Imports: 47 Imported by: 0

Documentation

Index

Constants

View Source
const (
	NFSSharesRoot = "nfs-shares-root"
	NFSShare      = "nfs-share"
)

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 GenerateBashCompletion(w io.Writer, cmd *cobra.Command) error

func GenerateZshCompletion added in v0.24.0

func GenerateZshCompletion(out io.Writer, cmd *cobra.Command) error

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{}

func (LibmachineShellDetector) GetShell added in v0.17.0

func (LibmachineShellDetector) GetShell(userShell string) (string, error)

type NoProxyGetter added in v0.17.0

type NoProxyGetter interface {
	GetNoProxyVar() (string, string)
}

type ShellConfig added in v0.7.0

type ShellConfig struct {
	Prefix           string
	Delimiter        string
	Suffix           string
	DockerCertPath   string
	DockerHost       string
	DockerTLSVerify  string
	DockerAPIVersion string
	UsageHint        string
	NoProxyVar       string
	NoProxyValue     string
}

type ShellDetector added in v0.17.0

type ShellDetector interface {
	GetShell(string) (string, error)
}

type Status added in v0.10.0

type Status struct {
	MinikubeStatus   string
	ClusterStatus    string
	KubeconfigStatus string
}

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL