Source code for watcher.applier.actions.resize

# -*- encoding: utf-8 -*-
# Copyright (c) 2017 Servionica
#
# Authors: Alexander Chadin <a.chadin@servionica.ru>
#
# 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 oslo_log import log
import six
import voluptuous

from watcher._i18n import _
from watcher.applier.actions import base
from watcher.common import nova_helper
from watcher.common import utils

LOG = log.getLogger(__name__)


[docs]class Resize(base.BaseAction): """Resizes a server with specified flavor. This action will allow you to resize a server to another flavor. The action schema is:: schema = Schema({ 'resource_id': str, # should be a UUID 'flavor': str, # should be either ID or Name of Flavor }) The `resource_id` is the UUID of the server to resize. The `flavor` is the ID or Name of Flavor (Nova accepts either ID or Name of Flavor to resize() function). """ # input parameters constants FLAVOR = 'flavor'
[docs] def check_resource_id(self, value): if (value is not None and len(value) > 0 and not utils.is_uuid_like(value)): raise voluptuous.Invalid(_("The parameter " "resource_id is invalid."))
@property def schema(self): return voluptuous.Schema({ voluptuous.Required(self.RESOURCE_ID): self.check_resource_id, voluptuous.Required(self.FLAVOR): voluptuous.All(voluptuous.Any(*six.string_types), voluptuous.Length(min=1)), }) @property def instance_uuid(self): return self.resource_id @property def flavor(self): return self.input_parameters.get(self.FLAVOR)
[docs] def resize(self): nova = nova_helper.NovaHelper(osc=self.osc) LOG.debug("Resize instance %s to %s flavor", self.instance_uuid, self.flavor) instance = nova.find_instance(self.instance_uuid) result = None if instance: try: result = nova.resize_instance( instance_id=self.instance_uuid, flavor=self.flavor) except Exception as exc: LOG.exception(exc) LOG.critical( "Unexpected error occurred. Resizing failed for " "instance %s.", self.instance_uuid) return result
[docs] def execute(self): return self.resize()
[docs] def revert(self): return self.migrate(destination=self.source_node)
[docs] def pre_condition(self): # TODO(jed): check if the instance exists / check if the instance is on # the source_node pass
[docs] def post_condition(self): # TODO(jed): check extra parameters (network response, etc.) pass