summaryrefslogtreecommitdiff
path: root/api-guide
diff options
context:
space:
mode:
authorTakashi Natsume <takanattie@gmail.com>2020-04-22 21:06:00 +0900
committerTakashi Natsume <takanattie@gmail.com>2020-04-27 16:27:46 +0000
commitd10f4169c931442961cda33b9e45ff7e9554f645 (patch)
tree651711884f7a002d53f5b8d0f50fe8f27ed4d0c9 /api-guide
parent347d656c35fdf0c309039a7c1f352f82c6950868 (diff)
downloadnova-d10f4169c931442961cda33b9e45ff7e9554f645.tar.gz
Fix list rendering in the accelerator support doc
List bullets in the top level have to be left justified, otherwise we get "<blockquote>" html tags inserted. Change-Id: I35e80c23c7a6421a648c93767ab954e9a6d1e997
Diffstat (limited to 'api-guide')
-rw-r--r--api-guide/source/accelerator-support.rst60
1 files changed, 30 insertions, 30 deletions
diff --git a/api-guide/source/accelerator-support.rst b/api-guide/source/accelerator-support.rst
index 6d66a22e12..d6f91f05e9 100644
--- a/api-guide/source/accelerator-support.rst
+++ b/api-guide/source/accelerator-support.rst
@@ -9,48 +9,48 @@ management for accelerators.
To launch servers with accelerators, the administrator (or an user with
appropriate privileges) must do the following:
- * Create a device profile in Cyborg, which specifies what accelerator
- resources need to be provisioned. (See `Cyborg device profiles API
- <https://docs.openstack.org/api-ref/accelerator/v2/index.html#device-profiles>`_.
+* Create a device profile in Cyborg, which specifies what accelerator
+ resources need to be provisioned. (See `Cyborg device profiles API
+ <https://docs.openstack.org/api-ref/accelerator/v2/index.html#device-profiles>`_.
- * Set the device profile name as an extra spec in a chosen flavor,
- with this syntax:
+* Set the device profile name as an extra spec in a chosen flavor,
+ with this syntax:
- .. code::
+ .. code::
- accel:device_profile=$device_profile_name
+ accel:device_profile=$device_profile_name
- The chosen flavor may be a newly created one or an existing one.
+ The chosen flavor may be a newly created one or an existing one.
- * Use that flavor to create a server:
+* Use that flavor to create a server:
- .. code::
+ .. code::
- openstack server create --flavor $myflavor --image $myimage $servername
+ openstack server create --flavor $myflavor --image $myimage $servername
As of 21.0.0 (Ussuri), nova supports only specific operations for instances
with accelerators. The lists of supported and unsupported operations are as
below:
- * Supported operations.
-
- * Creation and deletion.
- * Reboots (soft and hard).
- * Pause and unpause.
- * Stop and start.
- * Take a snapshot.
- * Backup.
- * Rescue and unrescue.
-
- * Unsupported operations
-
- * Rebuild.
- * Resize.
- * Evacuate.
- * Suspend and resume.
- * Shelve and unshelve.
- * Cold migration.
- * Live migration.
+* Supported operations.
+
+ * Creation and deletion.
+ * Reboots (soft and hard).
+ * Pause and unpause.
+ * Stop and start.
+ * Take a snapshot.
+ * Backup.
+ * Rescue and unrescue.
+
+* Unsupported operations
+
+ * Rebuild.
+ * Resize.
+ * Evacuate.
+ * Suspend and resume.
+ * Shelve and unshelve.
+ * Cold migration.
+ * Live migration.
Some operations, such as lock and unlock, work as they are effectively
no-ops for accelerators.