Merge "Add support for virtio-forwarder VNIC type"
This commit is contained in:
commit
e954fe4eed
@ -60,8 +60,8 @@ Create new port
|
|||||||
|
|
||||||
.. option:: --vnic-type <vnic-type>
|
.. option:: --vnic-type <vnic-type>
|
||||||
|
|
||||||
VNIC type for this port (direct | direct-physical | macvtap | normal | baremetal,
|
VNIC type for this port (direct | direct-physical | macvtap | normal | baremetal |
|
||||||
default: normal)
|
virtio-forwarder, default: normal)
|
||||||
|
|
||||||
.. option:: --binding-profile <binding-profile>
|
.. option:: --binding-profile <binding-profile>
|
||||||
|
|
||||||
@ -262,8 +262,8 @@ Set port properties
|
|||||||
|
|
||||||
.. option:: --vnic-type <vnic-type>
|
.. option:: --vnic-type <vnic-type>
|
||||||
|
|
||||||
VNIC type for this port (direct | direct-physical | macvtap | normal | baremetal,
|
VNIC type for this port (direct | direct-physical | macvtap | normal | baremetal |
|
||||||
default: normal)
|
virtio-forwarder, default: normal)
|
||||||
|
|
||||||
.. option:: --binding-profile <binding-profile>
|
.. option:: --binding-profile <binding-profile>
|
||||||
|
|
||||||
|
@ -248,9 +248,10 @@ def _add_updatable_args(parser):
|
|||||||
'--vnic-type',
|
'--vnic-type',
|
||||||
metavar='<vnic-type>',
|
metavar='<vnic-type>',
|
||||||
choices=['direct', 'direct-physical', 'macvtap',
|
choices=['direct', 'direct-physical', 'macvtap',
|
||||||
'normal', 'baremetal'],
|
'normal', 'baremetal', 'virtio-forwarder'],
|
||||||
help=_("VNIC type for this port (direct | direct-physical | "
|
help=_("VNIC type for this port (direct | direct-physical | "
|
||||||
"macvtap | normal | baremetal, default: normal)")
|
"macvtap | normal | baremetal | virtio-forwarder, "
|
||||||
|
" default: normal)")
|
||||||
)
|
)
|
||||||
# NOTE(dtroyer): --host-id is deprecated in Mar 2016. Do not
|
# NOTE(dtroyer): --host-id is deprecated in Mar 2016. Do not
|
||||||
# remove before 3.x release or Mar 2017.
|
# remove before 3.x release or Mar 2017.
|
||||||
|
@ -0,0 +1,9 @@
|
|||||||
|
---
|
||||||
|
features:
|
||||||
|
- |
|
||||||
|
The ``virtio-forwarder`` VNIC type has been added as another option for
|
||||||
|
setting the ``--vnic-type`` property on the ``port set`` and
|
||||||
|
``port create`` commands. This requests a low-latency virtio port inside
|
||||||
|
the instance, likely backed by hardware acceleration. Currently the
|
||||||
|
Agilio OVS external plugin provides support for this, with support from
|
||||||
|
other vendors following soon.
|
Loading…
x
Reference in New Issue
Block a user