Support chaining of VLAN plugin#993
Conversation
This commit updates the VLAN plugin to be used on a master interface created from a main plugin in a chain. If used as a channed plugin, with no master provided, and linkInContainer at true, then the CNI_IF_NAME interface will be used as a master interface, and the VLAN interfaces will be named as <CNI_IF_NAME>.<VLANID>. Signed-off-by: Nicolas VETEL <nicolas.vetel@orange.com>
|
First, thank you for the PR. I agree with you that your requirement is valid but I suppose we need to think more about its desgin. Currently your design assumes that Above CNI config is slightly not clear that which interface 'tuning' apply the configuration because actually CNI specification does not specify such multiple container interfaces in one CNI result. Hence, to apply such CNI config, we also need to elaborate CNI specification to define the semantics for CNI chaining with multiple container interface case, as well as In addition, from multus point of view, above CNI config is not feasible because multus expects (not strictly, but roughtly) that one net-attach-def creates one interface to the Pod. For example, multi-networkpolicy does not support two interface in one net-attach-def officially. But as I told previously, your requirement is valid. I roughly come up an idea to split into two CNI config as following: This will solve your requirement as well as previous concerns. So how about to close this PR and file another issue(or PR)? |
|
Hello @s1061123 , Your remarks make sense, and point out use cases I did not anticipated (q-in-q, multi-networkpolicies). My main intent was to be able to create vlan interfaces out of another net-attach-def without knowing in advance its CNI_IFNAME. Anyway, Thanks for you're help. |
Introduction
This feature adds the ability to create multiple vlan interfaces out of a container namespace interface created by another CNI.
It is greatly inspired from PR #903 proposing a similar feature on macvlan.
Problem
I need to have an interface in a pod, and create as many vlan interfaces as I want on that master interface, with a different IPAM configuration on each one.
Proposal
The idea is to relay on the vlan plugin to create such configuration, since creating a vlan interface and using IPAM on is exactly what it is for.
An obvious solution is to chain vlan plugin after the plugin creating master interface, and to use the linkInContainer option to target a master interface in the container namespace.
But the limitation is that it's hard to know the master interface in advance to reuse it in the chained vlan plugin.
The proposal is then use an empty master in the vlan plugin netconf combined with the linkInContainer parameter to ask the plugin to use the CNI_IF_NAME argument as master interface, and to name the new interface as the master with a dot vlanID notation at the end.
Here is a netconf example with a master interface created by the "my-main-plugin", and then the VLAN interfaces 3 and 4 created out of it :