HARINI NATHAN
HARINI NATHAN

Reputation: 197

Can we use Amazon-vpc-cni-k8s network plugin in cluster created with kubeadm tool?

I have a Kubernetes cluster created using kubeadm tool in AWS instance. I used the "Weave" Network plugin. I just saw amazon-vpc-cni-k8s plugin in EKS Documentation. So can I use this Network plugin in my cluster created by kubeadm tool?

Upvotes: 0

Views: 442

Answers (1)

Igliv
Igliv

Reputation: 214

No, you would need to separately run the amazon-vpc-cni-k8s command.

kubectl apply -f aws-k8s-cni.yaml from here

Alternatively you could use Kubespray that allows you to configure the CNI plugin as part of the deployment

Upvotes: 1

Related Questions