发布于2022-11-25 15:52:32阅读 1020
Kubernetes优秀的架构设计,借助multus cni + intel userspace cni 可以屏蔽了DPDK底层的复杂,让KubeVirt 支持DPDK变得比较容易。
因为 e2e验证 等原因,KubeVirt社区至今未加入对DPDK支持,本篇试着在最新版的KubeVirt v0.53加入DPDK功能。
Phase1 |
Phase2 |
|
---|---|---|
权限 |
大(privileged networking configuration) |
小(unprivileged networking configuration) |
发生场所 |
the virt-handler process |
virt-launcher process |
主要功能 |
第一步是决定改使用哪种 BindMechanism,一旦 BindMechanism 确定,则依次调用以下方法:1. discoverPodNetworkInterface:获取 Pod 网卡设备相关的信息,包括 IP 地址,路由,网关等信息2. preparePodNetworkInterfaces:基于前面获取的信息,配置网络3. setCachedInterface:缓存接口信息在内存中4. setCachedVIF:在文件系统中持久化 VIF 对象 |
和Phase1一样Phase2 也会选择正确的 BindMechanism,然后取得 Phase1 的配置信息(by loading cached VIF object)。基于 VIF 信息, proceed to decorate the domain xml configuration of the VM it will encapsulate |
DPDK不需要Phase1做任何事情,因为不需要获取Pod的网络信息,也不需要缓存Pod的网络和配置vm的网络。
Phase2是基于Phase1的后续,所以DPDK也不需要Phase2做任何事情。
- func (l *podNIC) PlugPhase1() error {
-
- ...
- if l.vmiSpecIface.Vhostuser != nil {
- return nil
- }
- ...language-go复制代码
复制
- func (l *podNIC) PlugPhase2(domain *api.Domain) error {
-
- ...
- if l.vmiSpecIface.Vhostuser != nil {
- return nil
- }
- ...language-go复制代码
复制
pkg/virt-controller/services/template.go
- const VhostuserSocketDir = "/var/lib/cni/usrcni/"const OvsRunDirDefault = "/var/run/openvswitch/"const PodNetInfoDefault = "/etc/podnetinfo"func addVhostuserVolumes(volumeMounts *[]k8sv1.VolumeMount, volumes *[]k8sv1.Volume) {
- // "shared-dir" volume name will be used by userspace cni to place the vhostuser socket file`
- *volumeMounts = append(*volumeMounts, k8sv1.VolumeMount{
- Name: "shared-dir",
- MountPath: VhostuserSocketDir,
- })
-
- *volumes = append(*volumes, k8sv1.Volume{
- Name: "shared-dir",
- Vol