summaryrefslogtreecommitdiff
path: root/releasenotes/notes
diff options
context:
space:
mode:
authorMartin Chlumsky <martin.chlumsky@gmail.com>2019-06-13 23:16:53 -0400
committerDean Troyer <dtroyer@gmail.com>2019-06-21 14:47:07 +0000
commit1aad94349bcd8f4b772bd6f216e4af897d46053b (patch)
treea322fd8059a4f73cfe1d263bae8ed67a205573fc /releasenotes/notes
parent82823f89f04a931b2491b92b2d3b0349e286fd9b (diff)
downloadpython-openstackclient-1aad94349bcd8f4b772bd6f216e4af897d46053b.tar.gz
Allow "server migrate" (not live) to take "--host" option
Currently, doing a cold migration while specifying a target host is not possible however nova api supports it since version 2.56. This patch allows passing "--host" when doing a cold migration. It runs normally if --os-compute-api-version is 2.56 or greater and returns an error otherwise. Change-Id: I960109008096ce8bb4e4c8ca6ffb22c33aacd995 Story: 2003325 Task: 24359
Diffstat (limited to 'releasenotes/notes')
-rw-r--r--releasenotes/notes/add-server-migrate-with-host-4884a71903c5c8a9.yaml8
1 files changed, 8 insertions, 0 deletions
diff --git a/releasenotes/notes/add-server-migrate-with-host-4884a71903c5c8a9.yaml b/releasenotes/notes/add-server-migrate-with-host-4884a71903c5c8a9.yaml
new file mode 100644
index 00000000..dd974ff0
--- /dev/null
+++ b/releasenotes/notes/add-server-migrate-with-host-4884a71903c5c8a9.yaml
@@ -0,0 +1,8 @@
+---
+features:
+ - |
+ Added the ability to specify ``--host`` with ``server migrate``
+ (cold migration) to specify the target host of the migration.
+ Requires ``--os-compute-api-version`` 2.56 or greater to target a
+ specific host for the (cold) migration.
+ [Story `2003325 <https://storyboard.openstack.org/#!/story/2003325>`_]