summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/source/cli/nova.rst30
1 files changed, 27 insertions, 3 deletions
diff --git a/doc/source/cli/nova.rst b/doc/source/cli/nova.rst
index b9e3fffc..dcd24be9 100644
--- a/doc/source/cli/nova.rst
+++ b/doc/source/cli/nova.rst
@@ -2556,13 +2556,26 @@ nova migration-list
.. code-block:: console
- usage: nova migration-list [--instance-uuid <instance_uuid>] [--host <host>]
- [--status <status>] [--marker <marker>]
- [--limit <limit>] [--changes-since <changes_since>]
+ usage: nova migration-list [--instance-uuid <instance_uuid>]
+ [--host <host>]
+ [--status <status>]
+ [--migration-type <migration_type>]
+ [--source-compute <source_compute>]
+ [--marker <marker>]
+ [--limit <limit>]
+ [--changes-since <changes_since>]
[--changes-before <changes_before>]
Print a list of migrations.
+**Examples**
+
+To see the list of evacuation operations *from* a compute service host:
+
+.. code-block:: console
+
+ nova migration-list --migration-type evacuation --source-compute host.foo.bar
+
**Optional arguments:**
``--instance-uuid <instance_uuid>``
@@ -2574,6 +2587,17 @@ Print a list of migrations.
``--status <status>``
Fetch migrations for the given status.
+``--migration-type <migration_type>``
+ Filter migrations by type. Valid values are:
+
+ * evacuation
+ * live-migration
+ * migration
+ * resize
+
+``--source-compute <source_compute>``
+ Filter migrations by source compute host name.
+
``--marker <marker>``
The last migration of the previous page; displays list of migrations after
"marker". Note that the marker is the migration UUID.