[EKS] Use Multus with existing cluster created by eksctl

0

we created and manage our EKS cluster with eksctl for quite a while. Now we are faced with a use-case where we need multiple interfaces in a pod. EKS supports multus to do exactly this. All documentations I'm able to find start with a cloudformation script to setup new nodegroups.

Im not exactly sure how to integrate this into our existsing workflow with eksctl. We already have running nodes. So I just skipped that step and installed the multus daemonset with the existing nodes and tried to assign a second interface to a container which didnt work. I checked the cloudformation script and it does multus spefic stuff (Im not familiar with cloudformation scripts) .

Q: Can I somehow patch existing nodes in order to support Multus?

已提问 2 年前680 查看次数
1 回答
1

You can follow this quickstart guide to setup Multus CNI for your EKS cluster - https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/docs/quickstart.md

In this setup, you will need to clone this github repo and install a daemonset (multus-daemonset-thick-plugin.yml) which creates pods that are responsible for patching your existing nodes with Multus CNI configuration.

After the nodes are patched, you can create the NetworkAttachmentDefinition CRD to define your network configuration as specified here.

After creating the above CRD, you'll need to add the annotation k8s.v1.cni.cncf.io/networks to your pod/deployment manifest to assign additional ENIs to your new pods.

I hope this helps!

profile pictureAWS
支持工程师
已回答 2 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则