From 613f55c26a6ace2d4eb50fa8e7df267cc756a6a8 Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Thu, 3 Aug 2017 08:02:24 -0400 Subject: [PATCH] fix list rendering in aggregates List items need to be exactly 2 spaces off of the parent, and the top level left justified, otherwise
gets thrown into the html. Part of bp: doc-migration Change-Id: I16634edbc562aff69744e5d7c7275689326ab8d0 --- doc/source/user/aggregates.rst | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/doc/source/user/aggregates.rst b/doc/source/user/aggregates.rst index 12aa2a80cb..0527c74e4e 100644 --- a/doc/source/user/aggregates.rst +++ b/doc/source/user/aggregates.rst @@ -67,21 +67,21 @@ Design The OSAPI Admin API is extended to support the following operations: - * Aggregates +* Aggregates - * list aggregates: returns a list of all the host-aggregates (optionally filtered by availability zone) - * create aggregate: creates an aggregate, takes a friendly name, etc. returns an id - * show aggregate: shows the details of an aggregate (id, name, availability_zone, hosts and metadata) - * update aggregate: updates the name and availability zone of an aggregate - * set metadata: sets the metadata on an aggregate to the values supplied - * delete aggregate: deletes an aggregate, it fails if the aggregate is not empty - * add host: adds a host to the aggregate - * remove host: removes a host from the aggregate + * list aggregates: returns a list of all the host-aggregates (optionally filtered by availability zone) + * create aggregate: creates an aggregate, takes a friendly name, etc. returns an id + * show aggregate: shows the details of an aggregate (id, name, availability_zone, hosts and metadata) + * update aggregate: updates the name and availability zone of an aggregate + * set metadata: sets the metadata on an aggregate to the values supplied + * delete aggregate: deletes an aggregate, it fails if the aggregate is not empty + * add host: adds a host to the aggregate + * remove host: removes a host from the aggregate - * Hosts +* Hosts - * start host maintenance (or evacuate-host): disallow a host to serve API requests and migrate instances to other hosts of the aggregate - * stop host maintenance: (or rebalance-host): put the host back into operational mode, migrating instances back onto that host + * start host maintenance (or evacuate-host): disallow a host to serve API requests and migrate instances to other hosts of the aggregate + * stop host maintenance: (or rebalance-host): put the host back into operational mode, migrating instances back onto that host Using the Nova CLI ------------------