• KubeVirt with DPDK


    发布于2022-11-25 15:52:32阅读 1020

    Kubernetes优秀的架构设计,借助multus cni + intel userspace cni 可以屏蔽了DPDK底层的复杂,让KubeVirt 支持DPDK变得比较容易。

    因为 e2e验证 等原因,KubeVirt社区至今未加入对DPDK支持,本篇试着在最新版的KubeVirt v0.53加入DPDK功能。

    network Phase1 & Phase2

    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做任何事情。

    1. func (l *podNIC) PlugPhase1() error {
    2. ...
    3. if l.vmiSpecIface.Vhostuser != nil {
    4. return nil
    5. }
    6. ...language-go复制代码

    复制

    1. func (l *podNIC) PlugPhase2(domain *api.Domain) error {
    2. ...
    3. if l.vmiSpecIface.Vhostuser != nil {
    4. return nil
    5. }
    6. ...language-go复制代码

    复制

    准备Pod with DPDK mainifest

    pkg/virt-controller/services/template.go

    1. const VhostuserSocketDir = "/var/lib/cni/usrcni/"const OvsRunDirDefault = "/var/run/openvswitch/"const PodNetInfoDefault = "/etc/podnetinfo"func addVhostuserVolumes(volumeMounts *[]k8sv1.VolumeMount, volumes *[]k8sv1.Volume) {
    2. // "shared-dir" volume name will be used by userspace cni to place the vhostuser socket file`
    3. *volumeMounts = append(*volumeMounts, k8sv1.VolumeMount{
    4. Name: "shared-dir",
    5. MountPath: VhostuserSocketDir,
    6. })
    7. *volumes = append(*volumes, k8sv1.Volume{
    8. Name: "shared-dir",
    9. Vol
  • 相关阅读:
    数据结构题型14-二叉树的遍历
    GnosisSafeProxyFactory合约学习
    2、音视频基础
    C. Boboniu and Bit Operations(暴力+枚举)
    android 记androidstudio gradle7.0以后
    Go sync.WaitGroup
    看懂领导的这三个想法,能让领导刮目相看
    智慧公厕系列产品:为您提供更便捷、更卫生的厕所体验
    001、JDK环境配置
    WebAPI文档与自动化测试
  • 原文地址:https://blog.csdn.net/lingshengxiyou/article/details/128082634