You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This simplifies the containerd installation instructions. All Linux distros will
now download from Docker repos, including Ubuntu 18.04 which previously
installed from Ubuntu repos.
The Docker runtime instructions have also been simplified. The RHEL/CentOS
specific option overlay2.override_kernel_check=true option has been removed.
It seems Docker will now autodetect overlay2 support on older Linux kernels
<4.0.0,>=3.10.0-514, which have back-ported overlay2 support on RHEL/CentOS 7.4+
See moby/moby#34368
1. Install the `containerd.io` package from the official Docker repositories. Instructions for setting up the Docker repository for your respective Linux distribution and installing the `containerd.io` package can be found at [Install Docker Engine](https://docs.docker.com/engine/install/#server).
126
98
127
99
2. Configure containerd:
128
100
@@ -137,60 +109,10 @@ Install containerd:
137
109
sudo systemctl restart containerd
138
110
```
139
111
140
-
{{% /tab %}}
141
-
{{% tab name="Debian 9+" %}}
142
-
143
-
1. Setup the [Docker Engine repository for Debian](https://docs.docker.com/engine/install/debian/#set-up-the-repository)
containerd config default | sudo tee /etc/containerd/config.toml
180
-
```
181
-
182
-
4. Restart containerd:
183
-
184
-
```shell
185
-
sudo systemctl restart containerd
186
-
```
187
-
188
112
{{% /tab %}}
189
113
{{% tab name="Windows (PowerShell)" %}}
190
114
191
-
<br />
192
115
Start a Powershell session, set `$Version` to the desired version (ex: `$Version=1.4.3`), and then run the following commands:
193
-
<br />
194
116
195
117
1. Download containerd:
196
118
@@ -425,28 +347,9 @@ in sync.
425
347
426
348
### Docker
427
349
428
-
On each of your nodes, install Docker CE.
429
-
430
-
The Kubernetes release notes list which versions of Docker are compatible
431
-
with that version of Kubernetes.
432
-
433
-
Use the following commands to install Docker on your system:
434
-
435
-
{{< tabs name="tab-cri-docker-installation" >}}
436
-
{{% tab name="Ubuntu 16.04+" %}}
437
-
438
-
1. Setup the [Docker Engine repository for Ubuntu](https://docs.docker.com/engine/install/ubuntu/#set-up-the-repository)
350
+
1. On each of your nodes, install the Docker for your Linux distribution as per [Install Docker Engine](https://docs.docker.com/engine/install/#server)
`overlay2` is the preferred storage driver for systems running Linux kernel version 4.0 or higher, or RHEL or CentOS using version 3.10.0-514 and above.
370
+
{{< /note >}}
470
371
471
-
5. Restart Docker:
372
+
3. Restart Docker and enable on boot:
472
373
473
374
```shell
375
+
sudo systemctl enable docker
474
376
sudo systemctl daemon-reload
475
377
sudo systemctl restart docker
476
378
```
477
379
478
-
{{% /tab %}}
479
-
{{% tab name="CentOS/RHEL 7.4+" %}}
480
-
481
-
1. Setup the [Docker Engine repository for CentOS/RHEL](https://docs.docker.com/engine/install/centos/#set-up-the-repository)
0 commit comments