2019-03-08 11:15:16 +01:00
|
|
|
=================================
|
|
|
|
Using ports with resource request
|
|
|
|
=================================
|
|
|
|
|
|
|
|
Starting from microversion 2.72 nova supports creating servers with neutron
|
|
|
|
ports having resource request visible as a admin-only port attribute
|
|
|
|
``resource_request``. For example a neutron port has resource request if it has
|
|
|
|
a QoS minimum bandwidth rule attached. Deleting such servers or detaching such
|
|
|
|
ports works since Stein version of nova without requiring any specific
|
|
|
|
microversion.
|
|
|
|
|
|
|
|
However the following API operations are still not supported in nova:
|
|
|
|
|
|
|
|
* Creating servers with neutron networks having QoS minimum bandwidth rule is
|
|
|
|
not supported. The user needs to pre-create the port in that neutron network
|
|
|
|
and create the server with the pre-created port.
|
|
|
|
|
|
|
|
* Attaching Neutron ports and networks having QoS minimum bandwidth rule is not
|
|
|
|
supported.
|
|
|
|
|
2019-07-18 15:44:34 +02:00
|
|
|
Also the following API operations are not supported in the 19.0.0 (Stein)
|
|
|
|
version of nova:
|
|
|
|
|
2019-03-08 11:15:16 +01:00
|
|
|
* Moving (resizing, migrating, live-migrating, evacuating, unshelving after
|
|
|
|
shelve offload) servers with ports having resource request is not yet
|
|
|
|
supported.
|
|
|
|
|
2019-08-27 15:05:55 +02:00
|
|
|
As of 20.0.0 (Train), nova supports cold migrating and resizing servers with
|
|
|
|
neutron ports having resource requests if both the source and destination
|
|
|
|
compute services are upgraded to 20.0.0 (Train) and the
|
|
|
|
``[upgrade_levels]/compute`` configuration does not prevent the computes from
|
2020-12-10 14:33:08 +01:00
|
|
|
using the latest RPC version. However cross cell resize and cross cell migrate
|
2020-12-14 10:37:05 +01:00
|
|
|
operations are still not supported with such ports and Nova will fall back to
|
|
|
|
same-cell resize if the server has such ports.
|
2019-08-27 15:05:55 +02:00
|
|
|
|
2020-03-18 10:56:32 +01:00
|
|
|
As of 21.0.0 (Ussuri), nova supports evacuating, live migrating and unshelving
|
|
|
|
servers with neutron ports having resource requests.
|
2019-10-15 13:49:53 +02:00
|
|
|
|
2020-10-09 15:56:56 +02:00
|
|
|
As of 23.0.0 (Wallaby), nova supports attaching neutron ports having QoS
|
|
|
|
minimum bandwidth rules.
|
|
|
|
|
2021-05-28 16:49:50 +02:00
|
|
|
Extended resource request
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2021-09-06 13:03:22 +02:00
|
|
|
It is expected that neutron 20.0.0 (Yoga) will implement an extended resource
|
|
|
|
request format via the the ``port-resource-request-groups`` neutron API
|
|
|
|
extension. As of nova 24.0.0 (Xena), nova already supports this extension if
|
|
|
|
every nova-compute service is upgraded to Xena version and the
|
|
|
|
``[upgrade_levels]/compute`` configuration does not prevent the computes from
|
|
|
|
using the latest RPC version.
|
2021-07-15 10:51:33 +02:00
|
|
|
|
2019-08-27 15:05:55 +02:00
|
|
|
See :nova-doc:`the admin guide <admin/port_with_resource_request.html>` for
|
|
|
|
administrative details.
|