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

5/26/2020

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?

-- HARINI NATHAN
amazon-vpc
cni
kubeadm
kubernetes

1 Answer

5/26/2020

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

-- Igliv
Source: StackOverflow