@@ -63,7 +63,7 @@ configuration, or reinstall it using automation.
63
63
64
64
### containerd
65
65
66
- This section contains the necessary steps to use ` containerd ` as CRI runtime.
66
+ This section contains the necessary steps to use containerd as CRI runtime.
67
67
68
68
Use the following commands to install Containerd on your system:
69
69
89
89
sudo sysctl --system
90
90
```
91
91
92
- Install ` containerd ` :
92
+ Install containerd:
93
93
94
94
{{< tabs name="tab-cri-containerd-installation" >}}
95
95
{{% tab name="Ubuntu 16.04" %}}
96
96
97
97
1 . Setup the [ Docker Engine repository for Ubuntu] ( https://docs.docker.com/engine/install/ubuntu/#set-up-the-repository )
98
98
99
- 2 . Install ` containerd ` :
99
+ 2 . Install containerd:
100
100
101
101
``` shell
102
102
sudo apt-get update && sudo apt-get install -y containerd.io
103
103
```
104
104
105
- 3 . Configure ` containerd ` :
105
+ 3 . Configure containerd:
106
106
107
107
``` shell
108
108
sudo mkdir -p /etc/containerd
109
109
containerd config default | sudo tee /etc/containerd/config.toml
110
110
```
111
111
112
- 4 . Restart ` containerd ` :
112
+ 4 . Restart containerd:
113
113
114
114
``` shell
115
115
sudo systemctl restart containerd
@@ -118,20 +118,20 @@ Install `containerd`:
118
118
{{% /tab %}}
119
119
{{% tab name="Ubuntu 18.04/20.04" %}}
120
120
121
- 1 . Install ` containerd ` :
121
+ 1 . Install containerd:
122
122
123
123
``` shell
124
124
sudo apt-get update && sudo apt-get install -y containerd
125
125
```
126
126
127
- 2 . Configure ` containerd ` :
127
+ 2 . Configure containerd:
128
128
129
129
``` shell
130
130
sudo mkdir -p /etc/containerd
131
131
containerd config default | sudo tee /etc/containerd/config.toml
132
132
```
133
133
134
- 3 . Restart ` containerd ` :
134
+ 3 . Restart containerd:
135
135
136
136
``` shell
137
137
sudo systemctl restart containerd
@@ -142,20 +142,20 @@ Install `containerd`:
142
142
143
143
1 . Setup the [ Docker Engine repository for Debian] ( https://docs.docker.com/engine/install/debian/#set-up-the-repository )
144
144
145
- 2 . Install ` containerd ` :
145
+ 2 . Install containerd:
146
146
147
147
``` shell
148
148
sudo apt-get update && sudo apt-get install -y containerd.io
149
149
```
150
150
151
- 3 . Configure ` containerd ` :
151
+ 3 . Configure containerd:
152
152
153
153
``` shell
154
154
sudo mkdir -p /etc/containerd
155
155
containerd config default | sudo tee /etc/containerd/config.toml
156
156
```
157
157
158
- 4 . Restart ` containerd ` :
158
+ 4 . Restart containerd:
159
159
160
160
``` shell
161
161
sudo systemctl restart containerd
@@ -166,20 +166,20 @@ Install `containerd`:
166
166
167
167
1 . Setup the [ Docker Engine repository for CentOS/RHEL] ( https://docs.docker.com/engine/install/centos/#set-up-the-repository )
168
168
169
- 2 . Install ` containerd ` :
169
+ 2 . Install containerd:
170
170
171
171
``` shell
172
172
sudo yum update -y && sudo yum install -y containerd.io
173
173
```
174
174
175
- 3 . Configure ` containerd ` :
175
+ 3 . Configure containerd:
176
176
177
177
``` shell
178
178
sudo mkdir -p /etc/containerd
179
179
containerd config default | sudo tee /etc/containerd/config.toml
180
180
```
181
181
182
- 4 . Restart ` containerd ` :
182
+ 4 . Restart containerd:
183
183
184
184
``` shell
185
185
sudo systemctl restart containerd
@@ -192,7 +192,7 @@ Install `containerd`:
192
192
Start a Powershell session, set ` $Version ` to the desired version (ex: ` $Version=1.4.3 ` ), and then run the following commands:
193
193
<br />
194
194
195
- 1 . Download ` containerd ` :
195
+ 1 . Download containerd:
196
196
197
197
``` powershell
198
198
curl.exe -L https://github.com/containerd/containerd/releases/download/v$Version/containerd-$Version-windows-amd64.tar.gz -o containerd-windows-amd64.tar.gz
@@ -215,7 +215,7 @@ Start a Powershell session, set `$Version` to the desired version (ex: `$Version
215
215
Add-MpPreference -ExclusionProcess "$Env:ProgramFiles\containerd\containerd.exe"
216
216
```
217
217
218
- 3 . Start ` containerd ` :
218
+ 3 . Start containerd:
219
219
220
220
``` powershell
221
221
.\containerd.exe --register-service
0 commit comments