0

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
  • 217
  • 3
  • 12

1 Answers1

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