From 3b29f8fbb3cbb8b961720a8fabbf691a4e96889b Mon Sep 17 00:00:00 2001 From: Julio Montes Date: Thu, 9 May 2019 08:21:55 -0500 Subject: [PATCH] how-to: Fix `Install containerd with cri plugin` note It's a little complicated to understand the note of the section Install containerd with cri plugin, that says Just check if the cri plugin has been disabled in the containerd configuration file but if it's disabled containerd + the runtime class won't work. fixes #462 Signed-off-by: Julio Montes --- how-to/containerd-kata.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/how-to/containerd-kata.md b/how-to/containerd-kata.md index e3d6df06fd..0cd5247371 100644 --- a/how-to/containerd-kata.md +++ b/how-to/containerd-kata.md @@ -76,9 +76,9 @@ Follow the instructions to [install Kata Containers](https://github.com/kata-con ### Install containerd with cri plugin -> **Note:** `cri` is a native plugin of containerd 1.1 and above. It is built into containerd and enabled by default. -> You do not need to install `cri` if you have containerd 1.1 or above. Just check if the `cri` plugin has been disabled -> in the containerd configuration file. +> **Note:** `cri` is a native plugin of containerd 1.1 and above. It is built into containerd and enabled by default. +> You do not need to install `cri` if you have containerd 1.1 or above. Just remove the `cri` plugin from the list of +> `disabled_plugins` in the containerd configuration file (`/etc/containerd/config.toml`). Follow the instructions from the [CRI installation guide](http://github.com/containerd/cri/blob/master/docs/installation.md).