Skip to content

Commit cb6ba0f

Browse files
committed
install-kubeadm:Generalize list of distributions
1 parent 8267be8 commit cb6ba0f

File tree

1 file changed

+4
-11
lines changed

1 file changed

+4
-11
lines changed

content/en/docs/setup/production-environment/tools/kubeadm/install-kubeadm.md

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,7 @@ For information how to create a cluster with kubeadm once you have performed thi
1818
## {{% heading "prerequisites" %}}
1919

2020

21-
* One or more machines running one of:
22-
- Ubuntu 16.04+
23-
- Debian 9+
24-
- CentOS 7+
25-
- Red Hat Enterprise Linux (RHEL) 7+
26-
- Fedora 25+
27-
- HypriotOS v1.0.1+
28-
- Flatcar Container Linux (tested with 2512.3.0)
21+
* A compatible Linux host. The Kubernetes project provides generic instructions for Linux distributions based on Debian and Red Hat, and those distributions without a package manager.
2922
* 2 GB or more of RAM per machine (any less will leave little room for your apps).
3023
* 2 CPUs or more.
3124
* Full network connectivity between all machines in the cluster (public or private network is fine).
@@ -181,7 +174,7 @@ For more information on version skews, see:
181174
* Kubeadm-specific [version skew policy](/docs/setup/production-environment/tools/kubeadm/create-cluster-kubeadm/#version-skew-policy)
182175

183176
{{< tabs name="k8s_install" >}}
184-
{{% tab name="Ubuntu, Debian or HypriotOS" %}}
177+
{{% tab name="Debian-based distributions" %}}
185178
```bash
186179
sudo apt-get update && sudo apt-get install -y apt-transport-https curl
187180
curl -s https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key add -
@@ -193,7 +186,7 @@ sudo apt-get install -y kubelet kubeadm kubectl
193186
sudo apt-mark hold kubelet kubeadm kubectl
194187
```
195188
{{% /tab %}}
196-
{{% tab name="CentOS, RHEL or Fedora" %}}
189+
{{% tab name="Red Hat-based distributions" %}}
197190
```bash
198191
cat <<EOF | sudo tee /etc/yum.repos.d/kubernetes.repo
199192
[kubernetes]
@@ -224,7 +217,7 @@ sudo systemctl enable --now kubelet
224217
- You can leave SELinux enabled if you know how to configure it but it may require settings that are not supported by kubeadm.
225218

226219
{{% /tab %}}
227-
{{% tab name="Fedora CoreOS or Flatcar Container Linux" %}}
220+
{{% tab name="Without a package manager" %}}
228221
Install CNI plugins (required for most pod network):
229222

230223
```bash

0 commit comments

Comments
 (0)