Reputation: 3673
How can I find easily which CNI plugin is configured and where is the config file associated with it?
Upvotes: 3
Views: 4897
Reputation: 15568
You can look into the content in /etc/cni/net.d
and the binary at /opt/cni/bin
. If you don't find any of these, you can check kubelet argument --cni-conf-dir
and --cni-bin-dir
which will point you to the custom location of your CNI plugin.
Upvotes: 4