Merge "Add support for 'remote-managed' vnic type"

This commit is contained in:
Zuul 2022-02-23 07:55:28 +00:00 committed by Gerrit Code Review
commit bf71727c55
2 changed files with 9 additions and 2 deletions

View File

@ -259,11 +259,12 @@ def _add_updatable_args(parser):
metavar='<vnic-type>',
choices=(
'direct', 'direct-physical', 'macvtap',
'normal', 'baremetal', 'virtio-forwarder', 'vdpa'
'normal', 'baremetal', 'virtio-forwarder', 'vdpa', 'remote-managed'
),
help=_(
"VNIC type for this port (direct | direct-physical | "
"macvtap | normal | baremetal | virtio-forwarder | vdpa, "
"macvtap | normal | baremetal | virtio-forwarder | vdpa | "
"remote-managed, "
"default: normal)"
),
)

View File

@ -0,0 +1,6 @@
---
features:
- |
Support for the ``remote-managed`` VNIC type has been added and can now be
passed to the ``--vnic-type`` option when used in conjunction with the
``port create`` and ``port set`` commands.