summaryrefslogtreecommitdiff
path: root/novaclient/v2/server_migrations.py
Commit message (Collapse)AuthorAgeFilesLines
* Support for abort an ongoing live migrationAndrea Rosa2016-03-011-1/+14
| | | | | | | | | | | | | | | In Nova API microversion 2.24 there is a new operation which allows to abort a running live migration. This change is to enable this feature at the client side implementing a new method to call the new nova API: nova live-migration-abort <server_id> <migration_id> Implements blueprint: abort-live-migration Depends-On: I1ff861e54997a069894b542bd764ac3ef1b3dbb2 Change-Id: Ic2ead126e0cf48aa54a083e97cb9d1303a5a9bbd
* Add two server-migration commands and bump migration-list commandShaoHe Feng2016-03-011-1/+26
| | | | | | | | | | | | | | 1. Add two new commands Add nova client server-migration-list and server-migration-show 2. Bump and old command Add migration_type field for migration-list command Partially implements blueprint live-migration-progress-report Depends-On: Ia92ecbe3c99082e3a34adf4fd29041b1a95ef21e Change-Id: I071198fa9ba0699383bdebf4fab54714a435e6c3
* Support for forcing live migration to completePawel Koniszewski2016-02-251-0/+42
In API microversion 2.22 in Nova there is new ServerMigrations resource that allows opertators to force on-going live migration to complete: https://review.openstack.org/#/c/245921/ This patch implements new method in python-novaclient to take advantage of the new API: nova live-migration-force-complete <instance_id/name> <migration_id> Change-Id: I823c20b4e0c7b63e905f564a7dff13d3fb314a26 Implements blueprint pause-vm-during-live-migration