diff --git a/website/content/docs/install/index.mdx b/website/content/docs/install/index.mdx index cf7c2ecb1..0f630798e 100644 --- a/website/content/docs/install/index.mdx +++ b/website/content/docs/install/index.mdx @@ -237,11 +237,9 @@ If the `transparent_proxy` block is used for Consul Service Mesh, then the and outbound traffic for services to the Envoy proxy. The following commands assume that reference CNI plugins have already been installed. -Install the `consul-cni` plugin on each client node. - ```shell-session -$ curl -L -o consul-cni.tgz "https://releases.hashicorp.com/consul-cni/1.5.0/consul-cni-1.5.0_linux_$( [ $(uname -m) = aarch64 ] && echo arm64 || echo amd64)"-v1.5.0.tgz && \ - sudo tar -C /opt/cni/bin -xzf consul-cni.tgz +$ curl -L -o consul-cni.zip "https://releases.hashicorp.com/consul-cni/1.5.0/consul-cni-1.5.0_linux_$( [ $(uname -m) = aarch64 ] && echo arm64 || echo amd64)".zip && \ + unzip consul-cni.zip -d /opt/cni/bin ```