Improve none usage documentation
parent
51a3155cfd
commit
085bd38a09
|
@ -92,6 +92,17 @@ var resourceIssues = []match{
|
||||||
},
|
},
|
||||||
Regexp: re(`An existing connection was forcibly closed by the remote host`),
|
Regexp: re(`An existing connection was forcibly closed by the remote host`),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
// Fallback to deliver a good error message even if internal checks are not run
|
||||||
|
Kind: Kind{
|
||||||
|
ID: "RSRC_INSUFFICIENT_CORES",
|
||||||
|
ExitCode: ExInsufficientCores,
|
||||||
|
Advice: "Kubernetes requires at least 2 CPU's to start",
|
||||||
|
Issues: []int{7905},
|
||||||
|
URL: "https://kubernetes.io/docs/setup/production-environment/tools/kubeadm/install-kubeadm/",
|
||||||
|
},
|
||||||
|
Regexp: re(`ERROR.*the number of available CPUs 1 is less than the required 2`),
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
// hostIssues are related to the host operating system or BIOS
|
// hostIssues are related to the host operating system or BIOS
|
||||||
|
|
|
@ -2,16 +2,18 @@
|
||||||
|
|
||||||
A Linux VM with the following:
|
A Linux VM with the following:
|
||||||
|
|
||||||
* Docker
|
* systemd or OpenRC
|
||||||
* systemd (OpenRC based systems are also supported in v1.10+)
|
* a container runtime, such as Docker or CRIO
|
||||||
|
|
||||||
This VM must also meet the [kubeadm requirements.](https://kubernetes.io/docs/setup/production-environment/tools/kubeadm/install-kubeadm/)
|
This VM must also meet the [kubeadm requirements](https://kubernetes.io/docs/setup/production-environment/tools/kubeadm/install-kubeadm/), such as:
|
||||||
|
|
||||||
Kubernetes v1.18+ needs conntract to be installed on debian based machines.
|
* 2 CPU's
|
||||||
|
* 2GB RAM
|
||||||
```shell
|
* iptables (in legacy mode)
|
||||||
sudo apt-get install conntrack -y
|
* conntrack
|
||||||
```
|
* crictl
|
||||||
|
* SELinux permissive
|
||||||
|
* cgroups v1 (v2 is not yet supported by Kubernetes)
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue