octavia.compute.drivers.noop_driver.driver

Source code for octavia.compute.drivers.noop_driver.driver

# Copyright 2015 Hewlett-Packard Development Company, L.P.
#
# 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 as logging
from oslo_utils import uuidutils

from octavia.common import constants
from octavia.common import data_models
from octavia.compute import compute_base as driver_base

LOG = logging.getLogger(__name__)


[docs]class NoopManager(object): def __init__(self): super(NoopManager, self).__init__() self.computeconfig = {}
[docs] def build(self, name="amphora_name", amphora_flavor=None, image_id=None, image_tag=None, image_owner=None, key_name=None, sec_groups=None, network_ids=None, config_drive_files=None, user_data=None, port_ids=None, server_group_id=None): LOG.debug("Compute %s no-op, build name %s, amphora_flavor %s, " "image_id %s, image_tag %s, image_owner %s, key_name %s, " "sec_groups %s, network_ids %s, config_drive_files %s, " "user_data %s, port_ids %s, server_group_id %s", self.__class__.__name__, name, amphora_flavor, image_id, image_tag, image_owner, key_name, sec_groups, network_ids, config_drive_files, user_data, port_ids, server_group_id) self.computeconfig[(name, amphora_flavor, image_id, image_tag, image_owner, key_name, user_data)] = ( name, amphora_flavor, image_id, image_tag, image_owner, key_name, sec_groups, network_ids, config_drive_files, user_data, port_ids, 'build') compute_id = uuidutils.generate_uuid() return compute_id
[docs] def delete(self, compute_id): LOG.debug("Compute %s no-op, compute_id %s", self.__class__.__name__, compute_id) self.computeconfig[compute_id] = (compute_id, 'delete')
[docs] def status(self, compute_id): LOG.debug("Compute %s no-op, compute_id %s", self.__class__.__name__, compute_id) self.computeconfig[compute_id] = (compute_id, 'status') return constants.UP
[docs] def get_amphora(self, compute_id): LOG.debug("Compute %s no-op, compute_id %s", self.__class__.__name__, compute_id) self.computeconfig[compute_id] = (compute_id, 'get_amphora') return data_models.Amphora( compute_id=compute_id, status=constants.ACTIVE, lb_network_ip='192.0.2.1' ), None
[docs] def create_server_group(self, name, policy): LOG.debug("Create Server Group %s no-op, name %s, policy %s ", self.__class__.__name__, name, policy) self.computeconfig[(name, policy)] = (name, policy, 'create')
[docs] def delete_server_group(self, server_group_id): LOG.debug("Delete Server Group %s no-op, id %s ", self.__class__.__name__, server_group_id) self.computeconfig[server_group_id] = (server_group_id, 'delete')
[docs]class NoopComputeDriver(driver_base.ComputeBase): def __init__(self): super(NoopComputeDriver, self).__init__() self.driver = NoopManager()
[docs] def build(self, name="amphora_name", amphora_flavor=None, image_id=None, image_tag=None, image_owner=None, key_name=None, sec_groups=None, network_ids=None, config_drive_files=None, user_data=None, port_ids=None, server_group_id=None): compute_id = self.driver.build(name, amphora_flavor, image_id, image_tag, image_owner, key_name, sec_groups, network_ids, config_drive_files, user_data, port_ids, server_group_id) return compute_id
[docs] def delete(self, compute_id): self.driver.delete(compute_id)
[docs] def status(self, compute_id): return self.driver.status(compute_id)
[docs] def get_amphora(self, compute_id): return self.driver.get_amphora(compute_id)
[docs] def create_server_group(self, name, policy): return self.driver.create_server_group(name, policy)
[docs] def delete_server_group(self, server_group_id): self.driver.delete_server_group(server_group_id)
Creative Commons Attribution 3.0 License

Except where otherwise noted, this document is licensed under Creative Commons Attribution 3.0 License. See all OpenStack Legal Documents.