Skip to content

Use your custom CNI with kind

Antonio Ojea edited this page Sep 13, 2019 · 1 revision

Kind uses by default its own CNI plugin kindnetd that is very simple and works perfectly on simples network topologies.

However, if you want to use more advanced features from other CNI plugins, it's possible to disable kindetd and use your custom CNI, you just have to add the following option to your kind config and install your CNI once the cluster is created following the documentation of your CNI plugin.

kind: Cluster
apiVersion: kind.sigs.k8s.io/v1alpha3
networking:
  disableDefaultCNI: true
Clone this wiki locally