From 436cee2d841869a4dcff97190c7ddcb1ca5cab60 Mon Sep 17 00:00:00 2001 From: Thomas Stromberg Date: Thu, 7 May 2020 14:12:10 -0700 Subject: [PATCH 1/3] Fix minikube/kubernetes capitalization, make short help consistent --- cmd/minikube/cmd/cache.go | 4 ++-- cmd/minikube/cmd/completion.go | 2 +- cmd/minikube/cmd/config/addons.go | 2 +- cmd/minikube/cmd/config/config.go | 2 +- cmd/minikube/cmd/config/open.go | 4 ++-- cmd/minikube/cmd/config/profile.go | 2 +- cmd/minikube/cmd/dashboard.go | 4 ++-- cmd/minikube/cmd/delete.go | 4 ++-- cmd/minikube/cmd/docker-env.go | 2 +- cmd/minikube/cmd/kubectl.go | 4 ++-- cmd/minikube/cmd/logs.go | 2 +- cmd/minikube/cmd/node.go | 2 +- cmd/minikube/cmd/node_list.go | 4 ++-- cmd/minikube/cmd/options.go | 9 +++++---- cmd/minikube/cmd/pause.go | 2 +- cmd/minikube/cmd/podman-env.go | 2 +- cmd/minikube/cmd/root.go | 6 +++--- cmd/minikube/cmd/service.go | 6 +++--- cmd/minikube/cmd/ssh.go | 2 +- cmd/minikube/cmd/start.go | 8 ++++---- cmd/minikube/cmd/start_flags.go | 8 ++++---- cmd/minikube/cmd/status.go | 8 ++++---- cmd/minikube/cmd/stop.go | 4 ++-- cmd/minikube/cmd/tunnel.go | 2 +- cmd/minikube/cmd/update-context.go | 2 +- hack/preload-images/generate.go | 2 +- hack/preload-images/preload_images.go | 2 +- pkg/drivers/kic/oci/types.go | 2 +- pkg/drivers/kic/types.go | 4 ++-- pkg/generate/docs.go | 2 +- pkg/generate/rewrite.go | 2 +- pkg/kapi/kapi.go | 2 +- pkg/minikube/bootstrapper/bootstrapper.go | 2 +- pkg/minikube/bootstrapper/bsutil/kubeadm.go | 2 +- pkg/minikube/bootstrapper/bsutil/kubelet.go | 2 +- .../bootstrapper/bsutil/kverify/api_server.go | 2 +- .../bootstrapper/bsutil/kverify/default_sa.go | 2 +- pkg/minikube/bootstrapper/bsutil/kverify/kverify.go | 2 +- .../bootstrapper/bsutil/kverify/node_conditions.go | 2 +- .../bootstrapper/bsutil/kverify/node_ready.go | 2 +- .../bootstrapper/bsutil/kverify/system_pods.go | 2 +- pkg/minikube/bootstrapper/bsutil/ops.go | 2 +- pkg/minikube/bootstrapper/kubeadm/kubeadm.go | 12 ++++++------ pkg/minikube/cluster/cluster.go | 2 +- pkg/minikube/config/config.go | 6 +++--- pkg/minikube/config/types.go | 2 +- pkg/minikube/constants/constants.go | 6 +++--- pkg/minikube/cruntime/docker.go | 2 +- pkg/minikube/driver/driver.go | 2 +- pkg/minikube/kubeconfig/settings.go | 2 +- pkg/minikube/localpath/localpath.go | 2 +- pkg/minikube/node/cache.go | 2 +- pkg/minikube/node/start.go | 4 ++-- pkg/minikube/registry/global.go | 2 +- pkg/minikube/service/service.go | 4 ++-- pkg/storage/storage_provisioner.go | 2 +- pkg/util/utils.go | 2 +- test/integration/addons_test.go | 8 ++++---- test/integration/fn_tunnel_cmd.go | 2 +- test/integration/version_upgrade_test.go | 2 +- 60 files changed, 99 insertions(+), 98 deletions(-) diff --git a/cmd/minikube/cmd/cache.go b/cmd/minikube/cmd/cache.go index eb9137198475..30579d45fa39 100644 --- a/cmd/minikube/cmd/cache.go +++ b/cmd/minikube/cmd/cache.go @@ -31,8 +31,8 @@ const cacheImageConfigKey = "cache" // cacheCmd represents the cache command var cacheCmd = &cobra.Command{ Use: "cache", - Short: "Add or delete an image from the local cache.", - Long: "Add or delete an image from the local cache.", + Short: "Add, delete, or push a local image into minikube", + Long: "Add, delete, or push a local image into minikube", } // addCacheCmd represents the cache add command diff --git a/cmd/minikube/cmd/completion.go b/cmd/minikube/cmd/completion.go index 7356a7bea6ef..35e359e18829 100644 --- a/cmd/minikube/cmd/completion.go +++ b/cmd/minikube/cmd/completion.go @@ -69,7 +69,7 @@ const boilerPlate = ` var completionCmd = &cobra.Command{ Use: "completion SHELL", - Short: "Outputs minikube shell completion for the given shell (bash, zsh or fish)", + Short: "Generate command completion for a shell", Long: longDescription, Run: func(cmd *cobra.Command, args []string) { if len(args) != 1 { diff --git a/cmd/minikube/cmd/config/addons.go b/cmd/minikube/cmd/config/addons.go index ddcf9ae07616..5a0d842599dd 100644 --- a/cmd/minikube/cmd/config/addons.go +++ b/cmd/minikube/cmd/config/addons.go @@ -24,7 +24,7 @@ import ( // AddonsCmd represents the addons command var AddonsCmd = &cobra.Command{ Use: "addons SUBCOMMAND [flags]", - Short: "Modify minikube's kubernetes addons", + Short: "Enable or disable a minikube addon", Long: `addons modifies minikube addons files using subcommands like "minikube addons enable dashboard"`, Run: func(cmd *cobra.Command, args []string) { if err := cmd.Help(); err != nil { diff --git a/cmd/minikube/cmd/config/config.go b/cmd/minikube/cmd/config/config.go index aa6a603068d3..9d80c2112b09 100644 --- a/cmd/minikube/cmd/config/config.go +++ b/cmd/minikube/cmd/config/config.go @@ -177,7 +177,7 @@ var settings = []Setting{ // ConfigCmd represents the config command var ConfigCmd = &cobra.Command{ Use: "config SUBCOMMAND [flags]", - Short: "Modify minikube config", + Short: "Modify persistent configuration values", Long: `config modifies minikube config files using subcommands like "minikube config set driver kvm" Configurable fields: ` + "\n\n" + configurableFields(), Run: func(cmd *cobra.Command, args []string) { diff --git a/cmd/minikube/cmd/config/open.go b/cmd/minikube/cmd/config/open.go index b5ad2db22e19..070fce6fc1ed 100644 --- a/cmd/minikube/cmd/config/open.go +++ b/cmd/minikube/cmd/config/open.go @@ -94,7 +94,7 @@ You can add one by annotating a service with the label {{.labelName}}:{{.addonNa } if len(urlString) != 0 { - out.T(out.Celebrate, "Opening kubernetes service {{.namespace_name}}/{{.service_name}} in default browser...", out.V{"namespace_name": namespace, "service_name": svc}) + out.T(out.Celebrate, "Opening Kubernetes service {{.namespace_name}}/{{.service_name}} in default browser...", out.V{"namespace_name": namespace, "service_name": svc}) for _, url := range urlString { if err := browser.OpenURL(url); err != nil { exit.WithError(fmt.Sprintf("browser failed to open url %s", url), err) @@ -106,7 +106,7 @@ You can add one by annotating a service with the label {{.labelName}}:{{.addonNa } func init() { - addonsOpenCmd.Flags().BoolVar(&addonsURLMode, "url", false, "Display the kubernetes addons URL in the CLI instead of opening it in the default browser") + addonsOpenCmd.Flags().BoolVar(&addonsURLMode, "url", false, "Display the Kubernetes addons URL in the CLI instead of opening it in the default browser") addonsOpenCmd.Flags().BoolVar(&https, "https", false, "Open the addons URL with https instead of http") addonsOpenCmd.Flags().IntVar(&wait, "wait", service.DefaultWait, "Amount of time to wait for service in seconds") addonsOpenCmd.Flags().IntVar(&interval, "interval", service.DefaultInterval, "The time interval for each check that wait performs in seconds") diff --git a/cmd/minikube/cmd/config/profile.go b/cmd/minikube/cmd/config/profile.go index 182b48060069..171d90a3bd24 100644 --- a/cmd/minikube/cmd/config/profile.go +++ b/cmd/minikube/cmd/config/profile.go @@ -30,7 +30,7 @@ import ( // ProfileCmd represents the profile command var ProfileCmd = &cobra.Command{ Use: "profile [MINIKUBE_PROFILE_NAME]. You can return to the default minikube profile by running `minikube profile default`", - Short: "Profile gets or sets the current minikube profile", + Short: "Get or list the the current profiles (clusters)", Long: "profile sets the current minikube profile, or gets the current profile if no arguments are provided. This is used to run and manage multiple minikube instance. You can return to the default minikube profile by running `minikube profile default`", Run: func(cmd *cobra.Command, args []string) { if len(args) == 0 { diff --git a/cmd/minikube/cmd/dashboard.go b/cmd/minikube/cmd/dashboard.go index c83dd210fec5..31516e0c732c 100644 --- a/cmd/minikube/cmd/dashboard.go +++ b/cmd/minikube/cmd/dashboard.go @@ -51,8 +51,8 @@ var ( // dashboardCmd represents the dashboard command var dashboardCmd = &cobra.Command{ Use: "dashboard", - Short: "Access the kubernetes dashboard running within the minikube cluster", - Long: `Access the kubernetes dashboard running within the minikube cluster`, + Short: "Access the Kubernetes dashboard running within the minikube cluster", + Long: `Access the Kubernetes dashboard running within the minikube cluster`, Run: func(cmd *cobra.Command, args []string) { cname := ClusterFlagValue() co := mustload.Healthy(cname) diff --git a/cmd/minikube/cmd/delete.go b/cmd/minikube/cmd/delete.go index c2b05800aad3..09fd7d9615da 100644 --- a/cmd/minikube/cmd/delete.go +++ b/cmd/minikube/cmd/delete.go @@ -51,8 +51,8 @@ var purge bool // deleteCmd represents the delete command var deleteCmd = &cobra.Command{ Use: "delete", - Short: "Deletes a local kubernetes cluster", - Long: `Deletes a local kubernetes cluster. This command deletes the VM, and removes all + Short: "Deletes a local Kubernetes cluster", + Long: `Deletes a local Kubernetes cluster. This command deletes the VM, and removes all associated files.`, Run: runDelete, } diff --git a/cmd/minikube/cmd/docker-env.go b/cmd/minikube/cmd/docker-env.go index c4432c6b5825..edf6aca261a6 100644 --- a/cmd/minikube/cmd/docker-env.go +++ b/cmd/minikube/cmd/docker-env.go @@ -122,7 +122,7 @@ func isDockerActive(r command.Runner) bool { // dockerEnvCmd represents the docker-env command var dockerEnvCmd = &cobra.Command{ Use: "docker-env", - Short: "Sets up docker env variables; similar to '$(docker-machine env)'", + Short: "Configure environment to use minikube's Docker daemon", Long: `Sets up docker env variables; similar to '$(docker-machine env)'.`, Run: func(cmd *cobra.Command, args []string) { cname := ClusterFlagValue() diff --git a/cmd/minikube/cmd/kubectl.go b/cmd/minikube/cmd/kubectl.go index 3eca6dfb0614..9f304c03c32a 100644 --- a/cmd/minikube/cmd/kubectl.go +++ b/cmd/minikube/cmd/kubectl.go @@ -33,8 +33,8 @@ import ( // kubectlCmd represents the kubectl command var kubectlCmd = &cobra.Command{ Use: "kubectl", - Short: "Run kubectl", - Long: `Run the kubernetes client, download it if necessary. Remember -- after kubectl! + Short: "Run a kubectl binary matching the cluster version", + Long: `Run the Kubernetes client, download it if necessary. Remember -- after kubectl! Examples: minikube kubectl -- --help diff --git a/cmd/minikube/cmd/logs.go b/cmd/minikube/cmd/logs.go index 7dfc2df24f0b..5b5708f296d3 100644 --- a/cmd/minikube/cmd/logs.go +++ b/cmd/minikube/cmd/logs.go @@ -48,7 +48,7 @@ var ( // logsCmd represents the logs command var logsCmd = &cobra.Command{ Use: "logs", - Short: "Gets the logs of the running instance, used for debugging minikube, not user code.", + Short: "Returns logs to debug a local Kubernetes cluster", Long: `Gets the logs of the running instance, used for debugging minikube, not user code.`, Run: func(cmd *cobra.Command, args []string) { co := mustload.Running(ClusterFlagValue()) diff --git a/cmd/minikube/cmd/node.go b/cmd/minikube/cmd/node.go index 6dac2ca409bb..f851788ac6e8 100644 --- a/cmd/minikube/cmd/node.go +++ b/cmd/minikube/cmd/node.go @@ -24,7 +24,7 @@ import ( // nodeCmd represents the set of node subcommands var nodeCmd = &cobra.Command{ Use: "node", - Short: "Node operations", + Short: "Add, remove, or list additional nodes", Long: "Operations on nodes", Run: func(cmd *cobra.Command, args []string) { exit.UsageT("Usage: minikube node [add|start|stop|delete|list]") diff --git a/cmd/minikube/cmd/node_list.go b/cmd/minikube/cmd/node_list.go index 0295837ceb1f..7ec8075424bf 100644 --- a/cmd/minikube/cmd/node_list.go +++ b/cmd/minikube/cmd/node_list.go @@ -30,7 +30,7 @@ import ( var nodeListCmd = &cobra.Command{ Use: "list", Short: "List nodes.", - Long: "List existing Minikube nodes.", + Long: "List existing minikube nodes.", Run: func(cmd *cobra.Command, args []string) { if len(args) != 0 { exit.UsageT("Usage: minikube node list") @@ -40,7 +40,7 @@ var nodeListCmd = &cobra.Command{ _, cc := mustload.Partial(cname) if len(cc.Nodes) < 1 { - glog.Warningf("Did not found any Minikube node.") + glog.Warningf("Did not found any minikube node.") } else { glog.Infof("%v", cc.Nodes) } diff --git a/cmd/minikube/cmd/options.go b/cmd/minikube/cmd/options.go index 80f97606d11e..63211aefbbb9 100644 --- a/cmd/minikube/cmd/options.go +++ b/cmd/minikube/cmd/options.go @@ -28,10 +28,11 @@ import ( // optionsCmd represents the options command var optionsCmd = &cobra.Command{ - Use: "options", - Short: "Show a list of global command-line options (applies to all commands).", - Long: "Show a list of global command-line options (applies to all commands).", - Run: runOptions, + Use: "options", + Short: "Show a list of global command-line options (applies to all commands).", + Long: "Show a list of global command-line options (applies to all commands).", + Hidden: true, + Run: runOptions, } // runOptions handles the executes the flow of "minikube options" diff --git a/cmd/minikube/cmd/pause.go b/cmd/minikube/cmd/pause.go index d7b090ce8383..448583d8fece 100644 --- a/cmd/minikube/cmd/pause.go +++ b/cmd/minikube/cmd/pause.go @@ -41,7 +41,7 @@ var ( // pauseCmd represents the docker-pause command var pauseCmd = &cobra.Command{ Use: "pause", - Short: "pause containers", + Short: "pause Kubernetes", Run: runPause, } diff --git a/cmd/minikube/cmd/podman-env.go b/cmd/minikube/cmd/podman-env.go index 124a721de870..62356a49ee26 100644 --- a/cmd/minikube/cmd/podman-env.go +++ b/cmd/minikube/cmd/podman-env.go @@ -103,7 +103,7 @@ func createExternalSSHClient(d drivers.Driver) (*ssh.ExternalClient, error) { // podmanEnvCmd represents the podman-env command var podmanEnvCmd = &cobra.Command{ Use: "podman-env", - Short: "Sets up podman env variables; similar to '$(podman-machine env)'", + Short: "Configure environment to use minikube's Podman daemon", Long: `Sets up podman env variables; similar to '$(podman-machine env)'.`, Run: func(cmd *cobra.Command, args []string) { cname := ClusterFlagValue() diff --git a/cmd/minikube/cmd/root.go b/cmd/minikube/cmd/root.go index 1d5c4433f818..ff4cd84ffdff 100644 --- a/cmd/minikube/cmd/root.go +++ b/cmd/minikube/cmd/root.go @@ -58,8 +58,8 @@ var viperWhiteList = []string{ // RootCmd represents the base command when called without any subcommands 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.`, + Short: "minikube quickly sets up a local Kubernetes cluster", + Long: `minikube is a tool that provisions and manages local 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 { @@ -163,7 +163,7 @@ func setFlagsUsingViper() { func init() { translate.DetermineLocale() RootCmd.PersistentFlags().StringP(config.ProfileName, "p", constants.DefaultClusterName, `The name of the minikube VM being used. This can be set to allow having multiple instances of minikube independently.`) - RootCmd.PersistentFlags().StringP(configCmd.Bootstrapper, "b", "kubeadm", "The name of the cluster bootstrapper that will set up the kubernetes cluster.") + RootCmd.PersistentFlags().StringP(configCmd.Bootstrapper, "b", "kubeadm", "The name of the cluster bootstrapper that will set up the Kubernetes cluster.") groups := templates.CommandGroups{ { diff --git a/cmd/minikube/cmd/service.go b/cmd/minikube/cmd/service.go index 7e3407b85396..b4ce0ba84dc5 100644 --- a/cmd/minikube/cmd/service.go +++ b/cmd/minikube/cmd/service.go @@ -59,8 +59,8 @@ var ( // serviceCmd represents the service command var serviceCmd = &cobra.Command{ Use: "service [flags] SERVICE", - Short: "Gets the kubernetes URL(s) for the specified service in your local cluster", - Long: `Gets the kubernetes URL(s) for the specified service in your local cluster. In the case of multiple URLs they will be printed one at a time.`, + Short: "Returns a URL to connect to a service", + Long: `Returns the Kubernetes URL for a service in your local cluster. In the case of multiple URLs they will be printed one at a time.`, PersistentPreRun: func(cmd *cobra.Command, args []string) { t, err := template.New("serviceURL").Parse(serviceURLFormat) if err != nil { @@ -101,7 +101,7 @@ You may select another namespace by using 'minikube service {{.service}} -n 0 { diff --git a/pkg/minikube/node/cache.go b/pkg/minikube/node/cache.go index 19d37c9f807d..d5a36a5e15db 100644 --- a/pkg/minikube/node/cache.go +++ b/pkg/minikube/node/cache.go @@ -41,7 +41,7 @@ const ( cacheImageConfigKey = "cache" ) -// BeginCacheKubernetesImages caches images required for kubernetes version in the background +// BeginCacheKubernetesImages caches images required for Kubernetes version in the background func beginCacheKubernetesImages(g *errgroup.Group, imageRepository string, k8sVersion string, cRuntime string) { // TODO: remove imageRepository check once #7695 is fixed if imageRepository == "" && download.PreloadExists(k8sVersion, cRuntime) { diff --git a/pkg/minikube/node/start.go b/pkg/minikube/node/start.go index 689530fda5c4..2f326ddd927d 100644 --- a/pkg/minikube/node/start.go +++ b/pkg/minikube/node/start.go @@ -75,14 +75,14 @@ type Starter struct { ExistingAddons map[string]bool } -// Start spins up a guest and starts the kubernetes node. +// Start spins up a guest and starts the Kubernetes node. func Start(starter Starter, apiServer bool) (*kubeconfig.Settings, error) { // wait for preloaded tarball to finish downloading before configuring runtimes waitCacheRequiredImages(&cacheGroup) sv, err := util.ParseKubernetesVersion(starter.Node.KubernetesVersion) if err != nil { - return nil, errors.Wrap(err, "Failed to parse kubernetes version") + return nil, errors.Wrap(err, "Failed to parse Kubernetes version") } // configure the runtime (docker, containerd, crio) diff --git a/pkg/minikube/registry/global.go b/pkg/minikube/registry/global.go index 3e92a73bab95..a323cac88dfa 100644 --- a/pkg/minikube/registry/global.go +++ b/pkg/minikube/registry/global.go @@ -36,7 +36,7 @@ const ( None = "none" ) -// IsKIC checks if the driver is a kubernetes in container +// IsKIC checks if the driver is a Kubernetes in container func IsKIC(name string) bool { return name == Docker || name == Podman } diff --git a/pkg/minikube/service/service.go b/pkg/minikube/service/service.go index e50d4cc6c6a3..732878fc8d76 100644 --- a/pkg/minikube/service/service.go +++ b/pkg/minikube/service/service.go @@ -48,7 +48,7 @@ const ( DefaultInterval = 1 ) -// K8sClient represents a kubernetes client +// K8sClient represents a Kubernetes client type K8sClient interface { GetCoreClient(string) (typed_core.CoreV1Interface, error) } @@ -197,7 +197,7 @@ func printURLsForService(c typed_core.CoreV1Interface, ip, service, namespace st func CheckService(cname string, namespace string, service string) error { client, err := K8s.GetCoreClient(cname) if err != nil { - return errors.Wrap(err, "Error getting kubernetes client") + return errors.Wrap(err, "Error getting Kubernetes client") } svc, err := client.Services(namespace).Get(service, meta.GetOptions{}) diff --git a/pkg/storage/storage_provisioner.go b/pkg/storage/storage_provisioner.go index 3d29cc22b594..b7587d36b870 100644 --- a/pkg/storage/storage_provisioner.go +++ b/pkg/storage/storage_provisioner.go @@ -112,7 +112,7 @@ func (p *hostPathProvisioner) Delete(volume *core.PersistentVolume) error { // StartStorageProvisioner will start storage provisioner server func StartStorageProvisioner(pvDir string) error { - glog.Infof("Initializing the Minikube storage provisioner...") + glog.Infof("Initializing the minikube storage provisioner...") config, err := rest.InClusterConfig() if err != nil { return err diff --git a/pkg/util/utils.go b/pkg/util/utils.go index 37de6085cd0f..6a5c3bf0f627 100644 --- a/pkg/util/utils.go +++ b/pkg/util/utils.go @@ -90,7 +90,7 @@ func MaybeChownDirRecursiveToMinikubeUser(dir string) error { return nil } -// ParseKubernetesVersion parses the kubernetes version +// ParseKubernetesVersion parses the Kubernetes version func ParseKubernetesVersion(version string) (semver.Version, error) { return semver.Make(version[1:]) } diff --git a/test/integration/addons_test.go b/test/integration/addons_test.go index 081e78763dba..597617beef85 100644 --- a/test/integration/addons_test.go +++ b/test/integration/addons_test.go @@ -88,7 +88,7 @@ func validateIngressAddon(ctx context.Context, t *testing.T, profile string) { client, err := kapi.Client(profile) if err != nil { - t.Fatalf("failed to get kubernetes client: %v", client) + t.Fatalf("failed to get Kubernetes client: %v", client) } if err := kapi.WaitForDeploymentToStabilize(client, "kube-system", "ingress-nginx-controller", Minutes(6)); err != nil { @@ -158,7 +158,7 @@ func validateIngressAddon(ctx context.Context, t *testing.T, profile string) { func validateRegistryAddon(ctx context.Context, t *testing.T, profile string) { client, err := kapi.Client(profile) if err != nil { - t.Fatalf("failed to get kubernetes client for %s : %v", profile, err) + t.Fatalf("failed to get Kubernetes client for %s : %v", profile, err) } start := time.Now() @@ -232,7 +232,7 @@ func validateRegistryAddon(ctx context.Context, t *testing.T, profile string) { func validateMetricsServerAddon(ctx context.Context, t *testing.T, profile string) { client, err := kapi.Client(profile) if err != nil { - t.Fatalf("failed to get kubernetes client for %s: %v", profile, err) + t.Fatalf("failed to get Kubernetes client for %s: %v", profile, err) } start := time.Now() @@ -274,7 +274,7 @@ func validateMetricsServerAddon(ctx context.Context, t *testing.T, profile strin func validateHelmTillerAddon(ctx context.Context, t *testing.T, profile string) { client, err := kapi.Client(profile) if err != nil { - t.Fatalf("failed to get kubernetes client for %s: %v", profile, err) + t.Fatalf("failed to get Kubernetes client for %s: %v", profile, err) } start := time.Now() diff --git a/test/integration/fn_tunnel_cmd.go b/test/integration/fn_tunnel_cmd.go index a23c418bcc60..e990b0277800 100644 --- a/test/integration/fn_tunnel_cmd.go +++ b/test/integration/fn_tunnel_cmd.go @@ -132,7 +132,7 @@ func validateServiceStable(ctx context.Context, t *testing.T, profile string) { client, err := kapi.Client(profile) if err != nil { - t.Fatalf("failed to get kubernetes client for %q: %v", profile, err) + t.Fatalf("failed to get Kubernetes client for %q: %v", profile, err) } // Start the "nginx" pod. diff --git a/test/integration/version_upgrade_test.go b/test/integration/version_upgrade_test.go index f13c5b3d15b3..3f2626a882f5 100644 --- a/test/integration/version_upgrade_test.go +++ b/test/integration/version_upgrade_test.go @@ -123,7 +123,7 @@ func TestVersionUpgrade(t *testing.T) { t.Logf("Attempting to downgrade Kubernetes (should fail)") args = append([]string{"start", "-p", profile, "--memory=2200", fmt.Sprintf("--kubernetes-version=%s", constants.OldestKubernetesVersion), "--alsologtostderr", "-v=1"}, StartArgs()...) if rr, err := Run(t, exec.CommandContext(ctx, tf.Name(), args...)); err == nil { - t.Fatalf("downgrading kubernetes should not be allowed. expected to see error but got %v for %q", err, rr.Command()) + t.Fatalf("downgrading Kubernetes should not be allowed. expected to see error but got %v for %q", err, rr.Command()) } t.Logf("Attempting restart after unsuccessful downgrade") From eefcc04b36aa837ecc188cde9ab153fb303990f1 Mon Sep 17 00:00:00 2001 From: Thomas Stromberg Date: Thu, 7 May 2020 14:14:10 -0700 Subject: [PATCH 2/3] Shorten long text --- cmd/minikube/cmd/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/minikube/cmd/root.go b/cmd/minikube/cmd/root.go index ff4cd84ffdff..23eb988cc69c 100644 --- a/cmd/minikube/cmd/root.go +++ b/cmd/minikube/cmd/root.go @@ -59,7 +59,7 @@ var viperWhiteList = []string{ var RootCmd = &cobra.Command{ Use: "minikube", Short: "minikube quickly sets up a local Kubernetes cluster", - Long: `minikube is a tool that provisions and manages local Kubernetes clusters optimized for development workflows.`, + Long: `minikube provisions and manages local 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 { From cad2960ed54f3a588ec36d2e4b8a65aafcbae327 Mon Sep 17 00:00:00 2001 From: Thomas Stromberg Date: Thu, 7 May 2020 14:18:00 -0700 Subject: [PATCH 3/3] Run generate-docs --- site/content/en/docs/commands/addons.md | 20 +++++++++---------- site/content/en/docs/commands/cache.md | 18 ++++++++--------- site/content/en/docs/commands/completion.md | 6 +++--- site/content/en/docs/commands/config.md | 16 +++++++-------- site/content/en/docs/commands/dashboard.md | 8 ++++---- site/content/en/docs/commands/delete.md | 8 ++++---- site/content/en/docs/commands/docker-env.md | 6 +++--- site/content/en/docs/commands/help.md | 2 +- site/content/en/docs/commands/ip.md | 2 +- site/content/en/docs/commands/kubectl.md | 8 ++++---- site/content/en/docs/commands/logs.md | 6 +++--- site/content/en/docs/commands/mount.md | 2 +- site/content/en/docs/commands/node.md | 20 +++++++++---------- site/content/en/docs/commands/pause.md | 8 ++++---- site/content/en/docs/commands/podman-env.md | 6 +++--- site/content/en/docs/commands/profile.md | 10 +++++----- site/content/en/docs/commands/service.md | 14 ++++++------- site/content/en/docs/commands/ssh-key.md | 2 +- site/content/en/docs/commands/ssh.md | 6 +++--- site/content/en/docs/commands/start.md | 16 +++++++-------- site/content/en/docs/commands/status.md | 12 +++++------ site/content/en/docs/commands/stop.md | 8 ++++---- site/content/en/docs/commands/tunnel.md | 6 +++--- site/content/en/docs/commands/unpause.md | 2 +- site/content/en/docs/commands/update-check.md | 2 +- .../en/docs/commands/update-context.md | 6 +++--- site/content/en/docs/commands/version.md | 2 +- 27 files changed, 111 insertions(+), 111 deletions(-) diff --git a/site/content/en/docs/commands/addons.md b/site/content/en/docs/commands/addons.md index ce54b0967eed..67828ebb38d8 100644 --- a/site/content/en/docs/commands/addons.md +++ b/site/content/en/docs/commands/addons.md @@ -1,14 +1,14 @@ --- title: "addons" description: > - Modify minikube's kubernetes addons + Enable or disable a minikube addon --- ## minikube addons -Modify minikube's kubernetes addons +Enable or disable a minikube addon ### Synopsis @@ -28,7 +28,7 @@ minikube addons SUBCOMMAND [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files @@ -60,7 +60,7 @@ minikube addons configure ADDON_NAME [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files @@ -92,7 +92,7 @@ minikube addons disable ADDON_NAME [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files @@ -124,7 +124,7 @@ minikube addons enable ADDON_NAME [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files @@ -157,7 +157,7 @@ minikube addons help [command] [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files @@ -190,7 +190,7 @@ minikube addons list [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files @@ -219,7 +219,7 @@ minikube addons open ADDON_NAME [flags] -h, --help help for open --https Open the addons URL with https instead of http --interval int The time interval for each check that wait performs in seconds (default 1) - --url Display the kubernetes addons URL in the CLI instead of opening it in the default browser + --url Display the Kubernetes addons URL in the CLI instead of opening it in the default browser --wait int Amount of time to wait for service in seconds (default 2) ``` @@ -227,7 +227,7 @@ minikube addons open ADDON_NAME [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files diff --git a/site/content/en/docs/commands/cache.md b/site/content/en/docs/commands/cache.md index d3e3cd1b9f81..12578a8ae6a2 100644 --- a/site/content/en/docs/commands/cache.md +++ b/site/content/en/docs/commands/cache.md @@ -1,18 +1,18 @@ --- title: "cache" description: > - Add or delete an image from the local cache. + Add, delete, or push a local image into minikube --- ## minikube cache -Add or delete an image from the local cache. +Add, delete, or push a local image into minikube ### Synopsis -Add or delete an image from the local cache. +Add, delete, or push a local image into minikube ### Options @@ -24,7 +24,7 @@ Add or delete an image from the local cache. ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files @@ -56,7 +56,7 @@ minikube cache add [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files @@ -88,7 +88,7 @@ minikube cache delete [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files @@ -121,7 +121,7 @@ minikube cache help [command] [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files @@ -155,7 +155,7 @@ minikube cache list [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files @@ -187,7 +187,7 @@ minikube cache reload [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files diff --git a/site/content/en/docs/commands/completion.md b/site/content/en/docs/commands/completion.md index 8557cc068b0a..37be47a1b437 100644 --- a/site/content/en/docs/commands/completion.md +++ b/site/content/en/docs/commands/completion.md @@ -1,14 +1,14 @@ --- title: "completion" description: > - Outputs minikube shell completion for the given shell (bash, zsh or fish) + Generate command completion for a shell --- ## minikube completion -Outputs minikube shell completion for the given shell (bash, zsh or fish) +Generate command completion for a shell ### Synopsis @@ -50,7 +50,7 @@ minikube completion SHELL [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files diff --git a/site/content/en/docs/commands/config.md b/site/content/en/docs/commands/config.md index 2775a6e4aef8..be16831f3dbf 100644 --- a/site/content/en/docs/commands/config.md +++ b/site/content/en/docs/commands/config.md @@ -1,14 +1,14 @@ --- title: "config" description: > - Modify minikube config + Modify persistent configuration values --- ## minikube config -Modify minikube config +Modify persistent configuration values ### Synopsis @@ -58,7 +58,7 @@ minikube config SUBCOMMAND [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files @@ -90,7 +90,7 @@ minikube config get PROPERTY_NAME [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files @@ -123,7 +123,7 @@ minikube config help [command] [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files @@ -156,7 +156,7 @@ minikube config set PROPERTY_NAME PROPERTY_VALUE [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files @@ -188,7 +188,7 @@ minikube config unset PROPERTY_NAME [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files @@ -222,7 +222,7 @@ minikube config view [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files diff --git a/site/content/en/docs/commands/dashboard.md b/site/content/en/docs/commands/dashboard.md index e2aafc4e080b..2b384d77cec3 100644 --- a/site/content/en/docs/commands/dashboard.md +++ b/site/content/en/docs/commands/dashboard.md @@ -1,18 +1,18 @@ --- title: "dashboard" description: > - Access the kubernetes dashboard running within the minikube cluster + Access the Kubernetes dashboard running within the minikube cluster --- ## minikube dashboard -Access the kubernetes dashboard running within the minikube cluster +Access the Kubernetes dashboard running within the minikube cluster ### Synopsis -Access the kubernetes dashboard running within the minikube cluster +Access the Kubernetes dashboard running within the minikube cluster ``` minikube dashboard [flags] @@ -29,7 +29,7 @@ minikube dashboard [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files diff --git a/site/content/en/docs/commands/delete.md b/site/content/en/docs/commands/delete.md index f343bf524f51..a9b125538806 100644 --- a/site/content/en/docs/commands/delete.md +++ b/site/content/en/docs/commands/delete.md @@ -1,18 +1,18 @@ --- title: "delete" description: > - Deletes a local kubernetes cluster + Deletes a local Kubernetes cluster --- ## minikube delete -Deletes a local kubernetes cluster +Deletes a local Kubernetes cluster ### Synopsis -Deletes a local kubernetes cluster. This command deletes the VM, and removes all +Deletes a local Kubernetes cluster. This command deletes the VM, and removes all associated files. ``` @@ -31,7 +31,7 @@ minikube delete [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files diff --git a/site/content/en/docs/commands/docker-env.md b/site/content/en/docs/commands/docker-env.md index 188051a6e165..e2a886c73f08 100644 --- a/site/content/en/docs/commands/docker-env.md +++ b/site/content/en/docs/commands/docker-env.md @@ -1,14 +1,14 @@ --- title: "docker-env" description: > - Sets up docker env variables; similar to '$(docker-machine env)' + Configure environment to use minikube's Docker daemon --- ## minikube docker-env -Sets up docker env variables; similar to '$(docker-machine env)' +Configure environment to use minikube's Docker daemon ### Synopsis @@ -31,7 +31,7 @@ minikube docker-env [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files diff --git a/site/content/en/docs/commands/help.md b/site/content/en/docs/commands/help.md index 717ec0445ebd..d737c6bdb74d 100644 --- a/site/content/en/docs/commands/help.md +++ b/site/content/en/docs/commands/help.md @@ -29,7 +29,7 @@ minikube help [command] [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files diff --git a/site/content/en/docs/commands/ip.md b/site/content/en/docs/commands/ip.md index 188312dad3cb..0556157bc923 100644 --- a/site/content/en/docs/commands/ip.md +++ b/site/content/en/docs/commands/ip.md @@ -28,7 +28,7 @@ minikube ip [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files diff --git a/site/content/en/docs/commands/kubectl.md b/site/content/en/docs/commands/kubectl.md index 6699f257a467..db94331bebb3 100644 --- a/site/content/en/docs/commands/kubectl.md +++ b/site/content/en/docs/commands/kubectl.md @@ -1,18 +1,18 @@ --- title: "kubectl" description: > - Run kubectl + Run a kubectl binary matching the cluster version --- ## minikube kubectl -Run kubectl +Run a kubectl binary matching the cluster version ### Synopsis -Run the kubernetes client, download it if necessary. Remember -- after kubectl! +Run the Kubernetes client, download it if necessary. Remember -- after kubectl! Examples: minikube kubectl -- --help @@ -32,7 +32,7 @@ minikube kubectl [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files diff --git a/site/content/en/docs/commands/logs.md b/site/content/en/docs/commands/logs.md index 097a87b3c4e6..5142cdaf21c5 100644 --- a/site/content/en/docs/commands/logs.md +++ b/site/content/en/docs/commands/logs.md @@ -1,14 +1,14 @@ --- title: "logs" description: > - Gets the logs of the running instance, used for debugging minikube, not user code. + Returns logs to debug a local Kubernetes cluster --- ## minikube logs -Gets the logs of the running instance, used for debugging minikube, not user code. +Returns logs to debug a local Kubernetes cluster ### Synopsis @@ -32,7 +32,7 @@ minikube logs [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files diff --git a/site/content/en/docs/commands/mount.md b/site/content/en/docs/commands/mount.md index afc671e7789e..cbd2a4fd5848 100644 --- a/site/content/en/docs/commands/mount.md +++ b/site/content/en/docs/commands/mount.md @@ -37,7 +37,7 @@ minikube mount [flags] : ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files diff --git a/site/content/en/docs/commands/node.md b/site/content/en/docs/commands/node.md index 9ae17c92b961..034af6360dc3 100644 --- a/site/content/en/docs/commands/node.md +++ b/site/content/en/docs/commands/node.md @@ -1,14 +1,14 @@ --- title: "node" description: > - Node operations + Add, remove, or list additional nodes --- ## minikube node -Node operations +Add, remove, or list additional nodes ### Synopsis @@ -28,7 +28,7 @@ minikube node [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files @@ -63,7 +63,7 @@ minikube node add [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files @@ -95,7 +95,7 @@ minikube node delete [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files @@ -128,7 +128,7 @@ minikube node help [command] [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files @@ -144,7 +144,7 @@ List nodes. ### Synopsis -List existing Minikube nodes. +List existing minikube nodes. ``` minikube node list [flags] @@ -160,7 +160,7 @@ minikube node list [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files @@ -193,7 +193,7 @@ minikube node start [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files @@ -225,7 +225,7 @@ minikube node stop [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files diff --git a/site/content/en/docs/commands/pause.md b/site/content/en/docs/commands/pause.md index 7a6bc5cbcb91..c27427e45059 100644 --- a/site/content/en/docs/commands/pause.md +++ b/site/content/en/docs/commands/pause.md @@ -1,18 +1,18 @@ --- title: "pause" description: > - pause containers + pause Kubernetes --- ## minikube pause -pause containers +pause Kubernetes ### Synopsis -pause containers +pause Kubernetes ``` minikube pause [flags] @@ -30,7 +30,7 @@ minikube pause [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files diff --git a/site/content/en/docs/commands/podman-env.md b/site/content/en/docs/commands/podman-env.md index ab5e7769a8e6..ff9db7fb0252 100644 --- a/site/content/en/docs/commands/podman-env.md +++ b/site/content/en/docs/commands/podman-env.md @@ -1,14 +1,14 @@ --- title: "podman-env" description: > - Sets up podman env variables; similar to '$(podman-machine env)' + Configure environment to use minikube's Podman daemon --- ## minikube podman-env -Sets up podman env variables; similar to '$(podman-machine env)' +Configure environment to use minikube's Podman daemon ### Synopsis @@ -30,7 +30,7 @@ minikube podman-env [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files diff --git a/site/content/en/docs/commands/profile.md b/site/content/en/docs/commands/profile.md index 8dc67629c6f0..799d86ff4b24 100644 --- a/site/content/en/docs/commands/profile.md +++ b/site/content/en/docs/commands/profile.md @@ -1,14 +1,14 @@ --- title: "profile" description: > - Profile gets or sets the current minikube profile + Get or list the the current profiles (clusters) --- ## minikube profile -Profile gets or sets the current minikube profile +Get or list the the current profiles (clusters) ### Synopsis @@ -28,7 +28,7 @@ minikube profile [MINIKUBE_PROFILE_NAME]. You can return to the default minikub ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files @@ -61,7 +61,7 @@ minikube profile help [command] [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files @@ -94,7 +94,7 @@ minikube profile list [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files diff --git a/site/content/en/docs/commands/service.md b/site/content/en/docs/commands/service.md index 7b95e7b85e3e..e5fb1be2f987 100644 --- a/site/content/en/docs/commands/service.md +++ b/site/content/en/docs/commands/service.md @@ -1,18 +1,18 @@ --- title: "service" description: > - Gets the kubernetes URL(s) for the specified service in your local cluster + Returns a URL to connect to a service --- ## minikube service -Gets the kubernetes URL(s) for the specified service in your local cluster +Returns a URL to connect to a service ### Synopsis -Gets the kubernetes URL(s) for the specified service in your local cluster. In the case of multiple URLs they will be printed one at a time. +Returns the Kubernetes URL for a service in your local cluster. In the case of multiple URLs they will be printed one at a time. ``` minikube service [flags] SERVICE @@ -26,7 +26,7 @@ minikube service [flags] SERVICE --https Open the service URL with https instead of http --interval int The initial time interval for each check that wait performs in seconds (default 1) -n, --namespace string The service namespace (default "default") - --url Display the kubernetes service URL in the CLI instead of opening it in the default browser + --url Display the Kubernetes service URL in the CLI instead of opening it in the default browser --wait int Amount of time to wait for a service in seconds (default 2) ``` @@ -34,7 +34,7 @@ minikube service [flags] SERVICE ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files @@ -67,7 +67,7 @@ minikube service help [command] [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --format string Format to output service URL in. This format will be applied to each url individually and they will be printed one at a time. (default "http://{{.IP}}:{{.Port}}") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory @@ -101,7 +101,7 @@ minikube service list [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --format string Format to output service URL in. This format will be applied to each url individually and they will be printed one at a time. (default "http://{{.IP}}:{{.Port}}") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory diff --git a/site/content/en/docs/commands/ssh-key.md b/site/content/en/docs/commands/ssh-key.md index dba64aadbf39..6f5f489e0ed9 100644 --- a/site/content/en/docs/commands/ssh-key.md +++ b/site/content/en/docs/commands/ssh-key.md @@ -28,7 +28,7 @@ minikube ssh-key [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files diff --git a/site/content/en/docs/commands/ssh.md b/site/content/en/docs/commands/ssh.md index d1d99ebe69f0..921bfa2a0aab 100644 --- a/site/content/en/docs/commands/ssh.md +++ b/site/content/en/docs/commands/ssh.md @@ -1,14 +1,14 @@ --- title: "ssh" description: > - Log into or run a command on a machine with SSH; similar to 'docker-machine ssh' + Log into the minikube environment (for debugging) --- ## minikube ssh -Log into or run a command on a machine with SSH; similar to 'docker-machine ssh' +Log into the minikube environment (for debugging) ### Synopsis @@ -30,7 +30,7 @@ minikube ssh [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files diff --git a/site/content/en/docs/commands/start.md b/site/content/en/docs/commands/start.md index bcff3a72eb96..a2b76a4281af 100644 --- a/site/content/en/docs/commands/start.md +++ b/site/content/en/docs/commands/start.md @@ -1,18 +1,18 @@ --- title: "start" description: > - Starts a local kubernetes cluster + Starts a local Kubernetes cluster --- ## minikube start -Starts a local kubernetes cluster +Starts a local Kubernetes cluster ### Synopsis -Starts a local kubernetes cluster +Starts a local Kubernetes cluster ``` minikube start [flags] @@ -35,12 +35,12 @@ minikube start [flags] --delete-on-failure If set, delete the current cluster if start fails and try again. Defaults to false. --disable-driver-mounts Disables the filesystem mounts provided by the hypervisors --disk-size string Disk size allocated to the minikube VM (format: [], where unit = b, k, m or g). (default "20000mb") - --dns-domain string The cluster dns domain name used in the kubernetes cluster (default "cluster.local") + --dns-domain string The cluster dns domain name used in the Kubernetes cluster (default "cluster.local") --dns-proxy Enable proxy for NAT DNS requests (virtualbox driver only) --docker-env stringArray Environment variables to pass to the Docker daemon. (format: key=value) --docker-opt stringArray Specify arbitrary flags to pass to the Docker daemon. (format: key=value) --download-only If true, only download and cache files for later use - don't install or start anything. - --driver string Used to specify the driver to run kubernetes in. The list of available drivers depends on operating system. + --driver string Used to specify the driver to run Kubernetes in. The list of available drivers depends on operating system. --dry-run dry-run mode. Validates configuration, but does not mutate system state --embed-certs if true, will embed the certs in kubeconfig. --enable-default-cni Enable the default CNI plugin (/etc/cni/net.d/k8s.conf). Used in conjunction with "--network-plugin=cni". @@ -67,7 +67,7 @@ minikube start [flags] --interactive Allow user prompts for more information (default true) --iso-url strings Locations to fetch the minikube ISO from. (default [https://storage.googleapis.com/minikube/iso/minikube-v1.10.0-beta.2.iso,https://github.com/kubernetes/minikube/releases/download/v1.10.0-beta.2/minikube-v1.10.0-beta.2.iso,https://kubernetes.oss-cn-hangzhou.aliyuncs.com/minikube/iso/minikube-v1.10.0-beta.2.iso]) --keep-context This will keep the existing kubectl context and will create a minikube context. - --kubernetes-version string The kubernetes version that the minikube VM will use (ex: v1.2.3, 'stable' for v1.18.1, 'latest' for v1.18.1). Defaults to 'stable'. + --kubernetes-version string The Kubernetes version that the minikube VM will use (ex: v1.2.3, 'stable' for v1.18.1, 'latest' for v1.18.1). Defaults to 'stable'. --kvm-gpu Enable experimental NVIDIA GPU support in minikube --kvm-hidden Hide the hypervisor signature from the guest in minikube (kvm2 driver only) --kvm-network string The KVM network name. (kvm2 driver only) (default "default") @@ -88,7 +88,7 @@ minikube start [flags] --uuid string Provide VM UUID to restore MAC address (hyperkit driver only) --vm Filter to use only VM Drivers --vm-driver driver DEPRECATED, use driver instead. - --wait strings comma separated list of kubernetes components to verify and wait for after starting a cluster. defaults to "apiserver,system_pods", available options: "apiserver,system_pods,default_sa,apps_running,node_ready" . other acceptable values are 'all' or 'none', 'true' and 'false' (default [apiserver,system_pods]) + --wait strings comma separated list of Kubernetes components to verify and wait for after starting a cluster. defaults to "apiserver,system_pods", available options: "apiserver,system_pods,default_sa,apps_running,node_ready" . other acceptable values are 'all' or 'none', 'true' and 'false' (default [apiserver,system_pods]) --wait-timeout duration max time to wait per Kubernetes core services to be healthy. (default 6m0s) ``` @@ -96,7 +96,7 @@ minikube start [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files diff --git a/site/content/en/docs/commands/status.md b/site/content/en/docs/commands/status.md index 8dcd94cea602..1d4930b95a9f 100644 --- a/site/content/en/docs/commands/status.md +++ b/site/content/en/docs/commands/status.md @@ -1,20 +1,20 @@ --- title: "status" description: > - Gets the status of a local kubernetes cluster + Gets the status of a local Kubernetes cluster --- ## minikube status -Gets the status of a local kubernetes cluster +Gets the status of a local Kubernetes cluster ### Synopsis -Gets the status of a local kubernetes cluster. - Exit status contains the status of minikube's VM, cluster and kubernetes encoded on it's bits in this order from right to left. - Eg: 7 meaning: 1 (for minikube NOK) + 2 (for cluster NOK) + 4 (for kubernetes NOK) +Gets the status of a local Kubernetes cluster. + Exit status contains the status of minikube's VM, cluster and Kubernetes encoded on it's bits in this order from right to left. + Eg: 7 meaning: 1 (for minikube NOK) + 2 (for cluster NOK) + 4 (for Kubernetes NOK) ``` minikube status [flags] @@ -33,7 +33,7 @@ minikube status [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files diff --git a/site/content/en/docs/commands/stop.md b/site/content/en/docs/commands/stop.md index 08e190832bf7..196661393089 100644 --- a/site/content/en/docs/commands/stop.md +++ b/site/content/en/docs/commands/stop.md @@ -1,18 +1,18 @@ --- title: "stop" description: > - Stops a running local kubernetes cluster + Stops a running local Kubernetes cluster --- ## minikube stop -Stops a running local kubernetes cluster +Stops a running local Kubernetes cluster ### Synopsis -Stops a local kubernetes cluster running in Virtualbox. This command stops the VM +Stops a local Kubernetes cluster running in Virtualbox. This command stops the VM itself, leaving all files intact. The cluster can be started again with the "start" command. ``` @@ -29,7 +29,7 @@ minikube stop [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files diff --git a/site/content/en/docs/commands/tunnel.md b/site/content/en/docs/commands/tunnel.md index 7fde8449d395..81276e192a45 100644 --- a/site/content/en/docs/commands/tunnel.md +++ b/site/content/en/docs/commands/tunnel.md @@ -1,14 +1,14 @@ --- title: "tunnel" description: > - tunnel makes services of type LoadBalancer accessible on localhost + Connect to LoadBalancer services --- ## minikube tunnel -tunnel makes services of type LoadBalancer accessible on localhost +Connect to LoadBalancer services ### Synopsis @@ -29,7 +29,7 @@ minikube tunnel [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files diff --git a/site/content/en/docs/commands/unpause.md b/site/content/en/docs/commands/unpause.md index 3ae61076af49..3ada57bfce5e 100644 --- a/site/content/en/docs/commands/unpause.md +++ b/site/content/en/docs/commands/unpause.md @@ -30,7 +30,7 @@ minikube unpause [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files diff --git a/site/content/en/docs/commands/update-check.md b/site/content/en/docs/commands/update-check.md index c4720688136d..d479854faa8f 100644 --- a/site/content/en/docs/commands/update-check.md +++ b/site/content/en/docs/commands/update-check.md @@ -28,7 +28,7 @@ minikube update-check [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files diff --git a/site/content/en/docs/commands/update-context.md b/site/content/en/docs/commands/update-context.md index 4e200a747b7b..cefadf5dd4c1 100644 --- a/site/content/en/docs/commands/update-context.md +++ b/site/content/en/docs/commands/update-context.md @@ -1,14 +1,14 @@ --- title: "update-context" description: > - Verify the IP address of the running cluster in kubeconfig. + Update kubeconfig in case of an IP or port change --- ## minikube update-context -Verify the IP address of the running cluster in kubeconfig. +Update kubeconfig in case of an IP or port change ### Synopsis @@ -29,7 +29,7 @@ minikube update-context [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files diff --git a/site/content/en/docs/commands/version.md b/site/content/en/docs/commands/version.md index 4aeddee3072d..39fc166ea8ef 100644 --- a/site/content/en/docs/commands/version.md +++ b/site/content/en/docs/commands/version.md @@ -30,7 +30,7 @@ minikube version [flags] ``` --alsologtostderr log to standard error as well as files - -b, --bootstrapper string The name of the cluster bootstrapper that will set up the kubernetes cluster. (default "kubeadm") + -b, --bootstrapper string The name of the cluster bootstrapper that will set up the Kubernetes cluster. (default "kubeadm") --log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) --log_dir string If non-empty, write log files in this directory --logtostderr log to standard error instead of files