# Copyright 2014 OpenStack Foundation # All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. from novaclient.i18n import _ from novaclient.openstack.common import cliutils from novaclient import utils def _server_live_migrate(cs, server, args): class HostEvacuateLiveResponse(object): def __init__(self, server_uuid, live_migration_accepted, error_message): self.server_uuid = server_uuid self.live_migration_accepted = live_migration_accepted self.error_message = error_message success = True error_message = "" try: cs.servers.live_migrate(server['uuid'], args.target_host, args.block_migrate, args.disk_over_commit) except Exception as e: success = False error_message = _("Error while live migrating instance: %s") % e return HostEvacuateLiveResponse(server['uuid'], success, error_message) @cliutils.arg('host', metavar='', help='Name of host.') @cliutils.arg( '--target-host', metavar='', default=None, help=_('Name of target host.')) @cliutils.arg( '--block-migrate', action='store_true', default=False, help=_('Enable block migration.')) @cliutils.arg( '--disk-over-commit', action='store_true', default=False, help=_('Enable disk overcommit.')) def do_host_evacuate_live(cs, args): """Live migrate all instances of the specified host to other available hosts. """ hypervisors = cs.hypervisors.search(args.host, servers=True) response = [] for hyper in hypervisors: for server in getattr(hyper, 'servers', []): response.append(_server_live_migrate(cs, server, args)) utils.print_list(response, ["Server UUID", "Live Migration Accepted", "Error Message"])