HARINI NATHAN
HARINI NATHAN

Reputation: 197

Is it possible to have 2 network plugins for the kubernetes cluster?

while going through the network plugin in Kubernetes I end up with a doubt that it is possible to have two network plugin in the cluster created with kubeadm tool or can we have alternate plugin so that if one gets any issue it can automatically use another. can someone explain me ?

Upvotes: 1

Views: 980

Answers (1)

Arghya Sadhu
Arghya Sadhu

Reputation: 44657

You can have a combination of different CNIs for different functionality such as calico for policy and flannel for networking. But you cannot have two different CNIs performing exact same functionality in the same cluster simultaneously.

https://docs.projectcalico.org/getting-started/kubernetes/flannel/flannel

Upvotes: 4

Related Questions