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?
Asked
Active
Viewed 360 times
1 Answers
1
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
- 214
- 3
- 16
-
kubectl apply -f aws-k8s-cni.yaml this command I can give in k8s master node right? so It is possible right? – HARINI NATHAN May 26 '20 at 14:47
-
If kubectl is installed on the master than yes – Igliv May 27 '20 at 15:25