Skip to content

Commit

Permalink
typo: disable_plugins -> disabled_plugins
Browse files Browse the repository at this point in the history
Signed-off-by: Akihiro Suda <[email protected]>
  • Loading branch information
AkihiroSuda committed Mar 27, 2024
1 parent 9eba5fc commit 04e37ce
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
4 changes: 2 additions & 2 deletions script/tests/test_encryption.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down Expand Up @@ -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]
Expand Down

0 comments on commit 04e37ce

Please sign in to comment.