fix-up typo
parent
b73ec8cf05
commit
576fe6d615
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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()
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue