From 04e37ceefedd733c796e1980e9491e74ad7fd514 Mon Sep 17 00:00:00 2001 From: Akihiro Suda Date: Wed, 27 Mar 2024 18:57:00 +0900 Subject: [PATCH] typo: disable_plugins -> disabled_plugins Signed-off-by: Akihiro Suda --- README.md | 3 ++- script/tests/test_encryption.sh | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0d00fa6a..9d394437 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,8 @@ installation we use /tmp for directories. Also, we build containerd 1.3 from the ``` # cat config.toml -disable_plugins = ["cri"] +version = 2 +disabled_plugins = ["io.containerd.grpc.v1.cri"] root = "/tmp/var/lib/containerd" state = "/tmp/run/containerd" [grpc] diff --git a/script/tests/test_encryption.sh b/script/tests/test_encryption.sh index 559ea14c..65a71158 100755 --- a/script/tests/test_encryption.sh +++ b/script/tests/test_encryption.sh @@ -89,7 +89,7 @@ setup() { startContainerd() { cat <<_EOF_ >${CONFIG_TOML} version = 2 -disable_plugins = ["cri"] +disabled_plugins = ["io.containerd.grpc.v1.cri"] root = "${ROOTDIR}" state = "${STATEDIR}" [grpc] @@ -133,7 +133,7 @@ startContainerdLocalKeys() { mkdir -p ${LOCAL_KEYS_PATH} cat <<_EOF_ >${CONFIG_TOML} version = 2 -disable_plugins = ["cri"] +disabled_plugins = ["io.containerd.grpc.v1.cri"] root = "${ROOTDIR}" state = "${STATEDIR}" [grpc]