Package Details: cni-plugins-bin 1.4.1-1

Git Clone URL: https://aur.archlinux.org/cni-plugins-bin.git (read-only, click to copy)
Package Base: cni-plugins-bin
Description: Container Networking Interface (CNI) Plugins
Upstream URL: https://www.cni.dev/
Keywords: cni
Licenses: Apache
Conflicts: cni-plugins
Provides: cni-plugins
Submitter: GeorgeRaven
Maintainer: GeorgeRaven
Last Packager: GeorgeRaven
Votes: 1
Popularity: 0.000000
First Submitted: 2022-02-01 08:31 (UTC)
Last Updated: 2024-03-21 06:28 (UTC)

Dependencies (0)

Required by (22)

Sources (1)

Latest Comments

GeorgeRaven commented on 2022-02-01 12:45 (UTC) (edited on 2022-02-01 12:46 (UTC) by GeorgeRaven)

Note for Kubernetes users

Please note, while this package installs the container networking plugin binaries in the most recent location /opt/cni/bin and for compatibility the old location /usr/lib/cni you will need to check that kubelet is being pointed to the correct location preferably the newer /opt/cni/bin location. The most typical way to provide this argument to kubelet is through the kubelet.env file usually located in /etc/kubernetes/kubelet.env (if using kubeadm) if it does not exist you can create it assuming this is your correct Kubernetes directory (kubeadm uses /etc/kubernetes by default).

example kubelet.env files

The bog standard file:

# Kubernetes kubelet arguments
#
# The KUBELET_ARGS environment variable is used to provide flags and options to
# kubelet when running kubelet.service.
# See `man 1 kubelet` or `kubelet --help` for further information.
#
# NOTE: When using kubeadm to bootstrap a cluster KUBELET_ARGS will be appended
# to the kubeadm specific environment variables.
KUBELET_ARGS=--cni-bin-dir=/usr/lib/cni

However you may want to modify this to suit your specific docker installation, and update the args to be in the newer directory: KUBELET_ARGS=--cni-bin-dir=/opt/cni/bin,--cgroup-driver="systemd"