maiky
maiky

Reputation: 3673

How do I find which CNI plugin is my k8s is using? Where is its config file(s)?

How can I find easily which CNI plugin is configured and where is the config file associated with it?

Upvotes: 3

Views: 4897

Answers (1)

gohm'c
gohm'c

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

Related Questions