diff --git a/cmd/minikube/cmd/start.go b/cmd/minikube/cmd/start.go index 6a79b55931..13a7c2694f 100644 --- a/cmd/minikube/cmd/start.go +++ b/cmd/minikube/cmd/start.go @@ -636,7 +636,7 @@ func validateFlags(driver string) { cpuCount = viper.GetInt(cpus) } if cpuCount < constants.MinimumCPUS { - exit.UsageT("Requested cpu count {{.requested_cpus}} is less than the minimum allowed of {{.minimum_cpus}}", out.V{"requested_cpus": cpuCount, "minimum_cpus": constants.MinimumCPUS}) + exit.UsageT("Requested CPU count {{.requested_cpus}} is less than the minimum allowed of {{.minimum_cpus}}", out.V{"requested_cpus": cpuCount, "minimum_cpus": constants.MinimumCPUS}) } // check that kubeadm extra args contain only whitelisted parameters diff --git a/pkg/minikube/cluster/cluster.go b/pkg/minikube/cluster/cluster.go index 04d0ec2956..cc2a60a101 100644 --- a/pkg/minikube/cluster/cluster.go +++ b/pkg/minikube/cluster/cluster.go @@ -361,7 +361,7 @@ func megs(bytes uint64) int { func getHostInfo() (*hostInfo, error) { i, err := cpu.Info() if err != nil { - glog.Warningf("Unable to get cpu info: %v", err) + glog.Warningf("Unable to get CPU info: %v", err) return nil, err } v, err := mem.VirtualMemory() diff --git a/site/content/en/docs/Reference/Configuration/kubernetes.md b/site/content/en/docs/Reference/Configuration/kubernetes.md index 8c5c57f571..a44edc959d 100644 --- a/site/content/en/docs/Reference/Configuration/kubernetes.md +++ b/site/content/en/docs/Reference/Configuration/kubernetes.md @@ -17,7 +17,7 @@ minikube defaults to the latest stable version of Kubernetes. You may select a d `minikube start --kubernetes-version=v1.11.10` -minikube follows the [Kubernetes Version and Version Skew Support Policy](https://kubernetes.io/docs/setup/version-skew-policy/), so we guarantee support for the latest build for the last 3 minor Kubernetes releases. When practical, minikube aims for the the last 6 minor releases so that users can emulate legacy environments. +minikube follows the [Kubernetes Version and Version Skew Support Policy](https://kubernetes.io/docs/setup/version-skew-policy/), so we guarantee support for the latest build for the last 3 minor Kubernetes releases. When practical, minikube aims for the last 6 minor releases so that users can emulate legacy environments. As of September 2019, this means that minikube supports and actively tests against the latest builds of: