[doc]Update hw_vif_model as it supports igb now

Implements: blueprint igb-vif-model

Depends-On: https://review.opendev.org/c/openstack/nova/+/928584
Change-Id: Ifc53f9cd5eded7a71a1851dc23c40dd149380b3e
This commit is contained in:
Balazs Gibizer 2024-09-10 14:22:00 +02:00
parent 3ea17a13a0
commit c080d28194
2 changed files with 4 additions and 3 deletions

View File

@ -651,7 +651,7 @@ Here is a list of useful image properties and the values they expect.
The valid options depend on the configured hypervisor.
* ``KVM`` and ``QEMU``: ``e1000``, ``e1000e``, ``ne2k_pci``, ``pcnet``,
``rtl8139``, ``virtio`` and ``vmxnet3``.
``rtl8139``, ``virtio``, ``vmxnet3`` and ``igb``.
* VMware: ``e1000``, ``e1000e``, ``VirtualE1000``, ``VirtualE1000e``,
``VirtualPCNet32``, ``VirtualVmxnet`` and ``VirtualVmxnet3``.
* Xen: ``e1000``, ``netfront``, ``ne2k_pci``, ``pcnet``, and

View File

@ -111,7 +111,7 @@
},
"hw_vif_model": {
"title": "Virtual Network Interface",
"description": "Specifies the model of virtual network interface device to use. The valid options depend on the hypervisor configuration. libvirt driver options: KVM and QEMU: e1000, ne2k_pci, pcnet, rtl8139, spapr-vlan, virtio, e1000e and vmxnet3. Xen: e1000, netfront, ne2k_pci, pcnet, and rtl8139.",
"description": "Specifies the model of virtual network interface device to use. The valid options depend on the hypervisor configuration. libvirt driver options: KVM and QEMU: e1000, ne2k_pci, pcnet, rtl8139, spapr-vlan, virtio, e1000e, vmxnet3 and igb. Xen: e1000, netfront, ne2k_pci, pcnet, and rtl8139.",
"type": "string",
"enum": [
"e1000",
@ -122,7 +122,8 @@
"rtl8139",
"spapr-vlan",
"virtio",
"vmxnet3"
"vmxnet3",
"igb"
]
},
"hw_vif_multiqueue_enabled": {