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
In releases older than Debian 12 and Ubuntu 22.04, folder`/etc/apt/keyrings` does not exist by default, and it should be created before the curl command.
191
+
In releases older than Debian 12 and Ubuntu 22.04, directory`/etc/apt/keyrings` does not exist by default, and it should be created before the curl command.
192
192
{{< /note >}}
193
193
194
194
3. Add the appropriate Kubernetes `apt` repository. Please note that this repository have packages
@@ -210,6 +210,12 @@ In releases older than Debian 12 and Ubuntu 22.04, folder `/etc/apt/keyrings` do
210
210
sudo apt-mark hold kubelet kubeadm kubectl
211
211
```
212
212
213
+
5. (Optional) Enable the kubelet service before running kubeadm:
214
+
215
+
```shell
216
+
sudo systemctl enable --now kubelet
217
+
```
218
+
213
219
{{% /tab %}}
214
220
{{% tab name="Red Hat-based distributions" %}}
215
221
@@ -255,10 +261,15 @@ settings that are not supported by kubeadm.
255
261
EOF
256
262
```
257
263
258
-
3. Install kubelet, kubeadm and kubectl, and enable kubelet to ensure it's automatically started on startup:
0 commit comments