From 2f07ae55a60fa3b87a0de08fdac5099750047ff3 Mon Sep 17 00:00:00 2001 From: Sambo Chea <7059827+sombochea@users.noreply.github.com> Date: Sat, 9 Oct 2021 15:13:25 +0700 Subject: [PATCH] add install cni --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index ec02e43..a146fad 100644 --- a/README.md +++ b/README.md @@ -46,3 +46,11 @@ EOF sudo sysctl --system ``` + +# Install CNI plugins (required for most pod network) +```shell +CNI_VERSION="v0.8.2" +ARCH="amd64" +sudo mkdir -p /opt/cni/bin +curl -L "https://github.com/containernetworking/plugins/releases/download/${CNI_VERSION}/cni-plugins-linux-${ARCH}-${CNI_VERSION}.tgz" | sudo tar -C /opt/cni/bin -xz +```