From 3d6de7fa6b7dcf047e1fb2fd7b4744d54e22234e Mon Sep 17 00:00:00 2001 From: James Rasell Date: Fri, 31 Jan 2025 08:30:15 +0100 Subject: [PATCH] docs: Update CNI install detail to use 1.6.2 (#24976) CNI had release problems which meant 1.6.1 got pulled and 1.6.2 is identical. --- website/content/partials/install/install-cni-plugins.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/website/content/partials/install/install-cni-plugins.mdx b/website/content/partials/install/install-cni-plugins.mdx index 080482be1..cf133a47b 100644 --- a/website/content/partials/install/install-cni-plugins.mdx +++ b/website/content/partials/install/install-cni-plugins.mdx @@ -4,14 +4,14 @@ that use network namespaces. Refer to the [CNI Plugins external guide](https://www.cni.dev/plugins/current/) for details on individual plugins. The following series of commands determines your operating system architecture, -downloads the [CNI 1.6.1 -release](https://github.com/containernetworking/plugins/releases/tag/v1.6.1), +downloads the [CNI 1.6.2 +release](https://github.com/containernetworking/plugins/releases/tag/v1.6.2), and then extracts the CNI plugin binaries into the `/opt/cni/bin` directory. Update the `CNI_PLUGIN_VERSION` value to use a different release version. ```shell-session $ export ARCH_CNI=$( [ $(uname -m) = aarch64 ] && echo arm64 || echo amd64) -$ export CNI_PLUGIN_VERSION=v1.6.1 +$ export CNI_PLUGIN_VERSION=v1.6.2 $ curl -L -o cni-plugins.tgz "https://github.com/containernetworking/plugins/releases/download/${CNI_PLUGIN_VERSION}/cni-plugins-linux-${ARCH_CNI}-${CNI_PLUGIN_VERSION}".tgz && \ sudo mkdir -p /opt/cni/bin && \ sudo tar -C /opt/cni/bin -xzf cni-plugins.tgz