ironic/ironic/drivers/modules/noop.py
Zenghui Shi 1e24ef9dde BIOS Settings: Add BIOSInterface
* Adds 'bios' interface to 'BaseDriver'

* Adds BIOSInterface driver class

* Adds fake & no-bios drivers and entries

* Implements it for 'fake-hardare' hardware type

* Adds configuration parameters:
  + [DEFAULT]/enabled_bios_interfaces
  + [DEFAULT]/default_bios_interface

* Adds 'bios_interface' field to Node object

* Handle 'bios_interface' field in _convert_to_version

* Adds bios in CLEANING_INTERFACE_PRIORITY

Drivers can implement this interface to do BIOS
configuration.

Co-Authored-By: Yolanda Robla Mota <yroblamo@redhat.com>
Co-Authored-By: Luong Anh Tuan <tuanla@vn.fujitsu.com>
Change-Id: I7e57130242b6cab21b54e35dc3c0b7819bdc43c0
Story: #1712032
2018-05-08 15:16:52 +08:00

84 lines
2.6 KiB
Python

# Copyright 2016 Red Hat, Inc.
#
# 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.
"""
Dummy interface implementations for use as defaults with optional interfaces.
Note that unlike fake implementatios, these do not pass validation and raise
exceptions for user-accessible actions.
"""
from ironic.common import exception
from ironic.drivers import base
def _fail(iface, task, *args, **kwargs):
# TODO(dtanstur): support hardware types
driver = task.node.driver
raise exception.UnsupportedDriverExtension(
driver=driver, extension=iface.interface_type)
class FailMixin(object):
"""Mixin to add to an interface to make it fail validation."""
def get_properties(self):
return {}
validate = _fail
class NoConsole(FailMixin, base.ConsoleInterface):
"""Console interface implementation that raises errors on all requests."""
stop_console = get_console = start_console = _fail
class NoRescue(FailMixin, base.RescueInterface):
"""Rescue interface implementation that raises errors on all requests."""
rescue = unrescue = _fail
class NoVendor(FailMixin, base.VendorInterface):
"""Vendor interface implementation that raises errors on all requests."""
def driver_validate(self, method, **kwargs):
raise exception.UnsupportedDriverExtension(
driver=type(self).__name__, extension=self.interface_type)
class NoInspect(FailMixin, base.InspectInterface):
"""Inspect interface implementation that raises errors on all requests."""
inspect_hardware = _fail
class NoRAID(FailMixin, base.RAIDInterface):
"""RAID interface implementation that raises errors on all requests."""
create_configuration = delete_configuration = _fail
def validate_raid_config(self, task, raid_config):
_fail(self, task)
class NoBIOS(FailMixin, base.BIOSInterface):
"""BIOS interface implementation that raises errors on all requests."""
def apply_configuration(self, task, settings):
_fail(self, task, settings)
def factory_reset(self, task):
_fail(self, task)
def cache_bios_settings(self, task):
pass