Skip to content

Latest commit

 

History

History
43 lines (27 loc) · 1.13 KB

install.md

File metadata and controls

43 lines (27 loc) · 1.13 KB

Installation

This guide shows how to install CNI-Meta-Plugins using Helm.

Generic

helm

Set up the Helm repository.

helm repo add cni-meta-plugins https://spidernet-io.github.io/cni-plugins

Deploy CNI-Meta-Plugins using the default configuration options via Helm:

helm install meta-plugins cni-meta-plugins/meta-plugins -n kube-system 

More details about CNI-META-PLUGINS charts parameters.

After installation, you can see the router and veth binaries in the/opt/cni/bin directory of each node.

binary

If you don't want to use helm for installation, you can download the binary file directly.

# You need to download and decompress at each node
wget https://github.com/spidernet-io/cni-plugins/releases/download/v0.2.1/spider-cni-plugins-linux-amd64-v0.2.1.tar
tar xvfzp /root/spider-cni-plugins-linux-amd64-v0.2.1.tar -C /opt/cni/bin

Uninstall

Generally, you can uninstall CNI-META-PLUGINS release in this way:

helm

helm uninstall meta-plugins -n kube-system