-
Notifications
You must be signed in to change notification settings - Fork 14
Description
Device Plugin currently is capable of pooling VFs which has been generated by SR-IOV PF NICs 0 . This setup leaves no room to just pool single PF (e.g virtio ) devices. A possible device plugin enhancement could allow the free pooling of PF devices without the need to generate and pool VFs. This enhancement could help in environments where SR-IOV NICs are not present.
Similar feature is supported by sriov-device-plugin 1 where the user is able to pool devices by just specifying the PCI adress and the driver that those devices are bound to.
Below you can see an example of pooling virtio devices by using sriov-device-plugin:
config.json: | { "resourceList": [{ "resourceName": "example_virtio_net_device", "selectors":{ "vendors": ["1af4"], "devices": ["1000"], "drivers": ["virtio-pci"], "pciAddresses": ["0000:00:0a.0", "0000:00:0b.0","0000:00:0c.0","0000:00:0d.0"] } } ] }