sriov cni

  • By Canonical Kubernetes
Channel Revision Published Runs on
latest/stable 44 Yesterday
Ubuntu 22.04 Ubuntu 20.04
latest/candidate 44 15 Apr 2024
Ubuntu 22.04 Ubuntu 20.04
latest/beta 42 Yesterday
Ubuntu 22.04 Ubuntu 20.04
latest/edge 42 09 Aug 2023
Ubuntu 22.04 Ubuntu 20.04
1.30/edge 42 13 Mar 2024
Ubuntu 22.04 Ubuntu 20.04
1.29/stable 44 Yesterday
Ubuntu 22.04 Ubuntu 20.04
1.29/candidate 44 15 Apr 2024
Ubuntu 22.04 Ubuntu 20.04
1.29/beta 42 Yesterday
Ubuntu 22.04 Ubuntu 20.04
1.29/edge 42 21 Aug 2023
Ubuntu 22.04 Ubuntu 20.04
1.28/stable 41 22 Aug 2023
Ubuntu 22.04 Ubuntu 20.04
1.28/candidate 39 07 Jun 2023
Ubuntu 22.04 Ubuntu 20.04
1.28/beta 41 07 Aug 2023
Ubuntu 22.04 Ubuntu 20.04
1.28/edge 42 09 Aug 2023
Ubuntu 22.04 Ubuntu 20.04
1.27/stable 39 12 Jun 2023
Ubuntu 22.04 Ubuntu 20.04
1.27/candidate 39 12 Jun 2023
Ubuntu 22.04 Ubuntu 20.04
1.27/beta 37 17 Apr 2023
Ubuntu 22.04 Ubuntu 20.04
1.27/edge 36 17 Apr 2023
Ubuntu 22.04 Ubuntu 20.04
1.26/stable 33 27 Feb 2023
Ubuntu 22.04 Ubuntu 20.04
1.26/candidate 33 25 Feb 2023
Ubuntu 22.04 Ubuntu 20.04
1.26/beta 25 09 Apr 2023
Ubuntu 22.04 Ubuntu 20.04
1.26/edge 25 28 Oct 2022
Ubuntu 22.04 Ubuntu 20.04
1.25/stable 22 30 Sep 2022
Ubuntu 22.04 Ubuntu 20.04
1.25/candidate 22 28 Sep 2022
Ubuntu 22.04 Ubuntu 20.04
1.25/beta 26 01 Dec 2022
Ubuntu 22.04 Ubuntu 20.04
1.25/edge 13 16 Aug 2022
Ubuntu 22.04 Ubuntu 20.04
1.24/stable 12 04 Aug 2022
Ubuntu 22.04 Ubuntu 20.04
1.24/candidate 12 02 Aug 2022
Ubuntu 22.04 Ubuntu 20.04
1.24/beta 8 03 May 2022
Ubuntu 20.04
1.24/edge 9 22 Jul 2022
Ubuntu 22.04 Ubuntu 20.04
1.23/edge 4 25 Mar 2022
Ubuntu 20.04
juju deploy sriov-cni
Show information

Platform:

Ubuntu
22.04 20.04

SR-IOV support in Charmed Kubernetes makes it possible to take network interfaces that are SR-IOV Virtual Functions (VFs) and attach them directly to pods. SR-IOV support is provided by the sriov-cni and sriov-network-device-plugin charms, which must be deployed into a Kubernetes model in Juju.

Requirements

Juju 2.8.0

The SR-IOV CNI charms require Juju 2.8.0 or newer.

SR-IOV Hardware Support

The kubernetes-worker host machines in your Charmed Kubernetes cluster must have attached network interface cards that support SR-IOV. While you will be attaching Virtual Functions to pods, the Physical Functions must be present on the hosts as well.

CNI providers

SR-IOV CNI is not a replacement for other CNI providers. Your Charmed Kubernetes deployment must include at least one of the base CNI providers documented in the [CNI overview][cni-overview] page.

Multus

SR-IOV CNI requires Multus. You can read about how to enable Multus on Charmed Kubernetes in the [Multus CNI][Charmhub | Deploy Multus using Charmhub - The Open Operator Collection] page.

Persistent volume support

In order to deploy SR-IOV CNI, you will need a Kubernetes model in Juju, which requires persistent volume support to be enabled in your Charmed Kubernetes cluster.

If your cluster includes any of the cloud integrator charms, then you should have persistent volume support already. Otherwise, you can read the [Storage][storage] documentation page to learn how to enable persistent volume support by adding Ceph to your cluster.

Creating a Kubernetes model in Juju

To deploy the SR-IOV charms, you will first need a Kubernetes model in Juju.

Make sure your local kubeconfig is pointing to the correct Kubernetes cluster:

juju scp kubernetes-master/0:config ~/.kube/config

Next, add your Kubernetes as a cloud to your Juju controller:

juju add-k8s my-k8s-cloud --controller $(juju switch | cut -d: -f1)

And create a new Kubernetes model:

juju add-model my-k8s-model my-k8s-cloud

Deploying SR-IOV

Once all of the requirements have been met, you can deploy the SR-IOV charms into a Kubernetes model by running:

juju deploy sriov-cni
juju deploy sriov-network-device-plugin

Creating SR-IOV Virtual Functions

In order to use SR-IOV CNI, you must manually create SR-IOV virtual functions (VFs) on the kubernetes-worker units. Consult the documentation for your network interface card to determine how to create SR-IOV VFs. If needed, you can use the juju ssh command to ssh into the kubernetes-worker units.

Configuring sriov-network-device-plugin

Before the SR-IOV Network Device Plugin can function, you must configure it with a list of definitions for SR-IOV resources you would like to use. An example is shown below:

juju config sriov-network-device-plugin resource-list='
[
  {
    "resourceName": "intel_sriov_netdevice",
    "selectors": {
      "vendors": ["8086"],
      "devices": ["154c", "10ed"],
      "drivers": ["i40evf", "ixgbevf"]
    }
  }
]
'

For more details on available options in the resource-list config, please refer to the [SR-IOV Network Device Plugin documentation for the resourceList config][sriov-resourcelist].

You can verify that the resource list has been configured correctly by checking your Kubernetes nodes for the resources you defined. The example below indicates that 8 intel.com/intel_sriov_netdevice resources were detected on the node and are available to use:

$ kubectl get node node1 -o json | jq '.status.allocatable'
{
  "cpu": "8",
  "ephemeral-storage": "169986638772",
  "hugepages-1Gi": "0",
  "hugepages-2Mi": "8Gi",
  "intel.com/intel_sriov_netdevice": "8",
  "memory": "7880620Ki",
  "pods": "1k"
}

Creating a NetworkAttachmentDefinition

You will also need to create a NetworkAttachmentDefinition that uses the SR-IOV CNI plugin and references one of the SR-IOV resources you have defined. For example:

juju config multus network-attachment-definitions='
apiVersion: "k8s.cni.cncf.io/v1"
kind: NetworkAttachmentDefinition
metadata:
  name: sriov
  namespace: default
  annotations:
    k8s.v1.cni.cncf.io/resourceName: intel.com/intel_sriov_netdevice
spec:
  config: |
    {
      "type": "sriov",
      "ipam": {
        "type": "host-local",
        "ranges": [[{
            "subnet": "10.123.123.0/24"
        }]]
      }
    }
'

Creating a Pod

The last step is to create a pod that requests the intel.com/intel_sriov_netdevice resource and uses the NetworkAttachmentDefinition defined above:

apiVersion: v1
kind: Pod
metadata:
  name: ubuntu
  namespace: default
  annotations:
    k8s.v1.cni.cncf.io/networks: sriov
spec:
  containers:
  - name: ubuntu
    image: ubuntu:20.04
    command: ['sleep', '3600']
    resources:
      requests:
        intel.com/intel_sriov_netdevice: '1'
      limits:
        intel.com/intel_sriov_netdevice: '1'

Note: The pod must be created in the same namespace as the NetworkAttachmentDefinition.

If all goes well, the pod should come up in a Running state with the SR-IOV VF available from within the device. The interface’s name in this example will be net1, since it is the first additional network attached by Multus.

Troubleshooting

If there is an issue with SR-IOV CNI, it can be useful to inspect the Juju logs. To see a complete set of logs for SR-IOV CNI:

juju debug-log --replay --include=sriov-cni

And to do the same for the SR-IOV Network Device Plugin:

juju debug-log --replay --include=sriov-network-device-plugin


Help improve this document in the forum (guidelines). Last updated 9 months ago.