Source code for ironic.drivers.modules.drac.vendor_passthru

#
# 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.

"""
DRAC vendor-passthru interface
"""

from ironic_lib import metrics_utils

from ironic.common.i18n import _
from ironic.conductor import task_manager
from ironic.drivers import base
from ironic.drivers.modules.drac import bios as drac_bios
from ironic.drivers.modules.drac import common as drac_common
from ironic.drivers.modules.drac import job as drac_job

METRICS = metrics_utils.get_metrics_logger(__name__)


[docs]class DracVendorPassthru(base.VendorInterface): """Interface for DRAC specific methods."""
[docs] def get_properties(self): """Return the properties of the interface.""" return drac_common.COMMON_PROPERTIES
@METRICS.timer('DracVendorPassthru.validate')
[docs] def validate(self, task, **kwargs): """Validate the driver-specific info supplied. This method validates whether the 'driver_info' property of the supplied node contains the required information for this driver to manage the power state of the node. :param task: a TaskManager instance containing the node to act on. :param kwargs: not used. :raises: InvalidParameterValue if required driver_info attribute is missing or invalid on the node. """ return drac_common.parse_driver_info(task.node)
@METRICS.timer('DracVendorPassthru.get_bios_config') @base.passthru(['GET'], async=False, description=_("Returns a dictionary containing the BIOS " "settings from a node."))
[docs] def get_bios_config(self, task, **kwargs): """Get the BIOS configuration. This method is used to retrieve the BIOS settings from a node. :param task: a TaskManager instance containing the node to act on. :param kwargs: not used. :raises: DracOperationError on an error from python-dracclient. :returns: a dictionary containing BIOS settings. """ bios_attrs = {} for name, bios_attr in drac_bios.get_config(task.node).items(): bios_attrs[name] = bios_attr.__dict__ return bios_attrs
@METRICS.timer('DracVendorPassthru.set_bios_config') @base.passthru(['POST'], async=False, description=_("Change the BIOS configuration on a node. " "Required argument : a dictionary of " "{'AttributeName': 'NewValue'}. Returns " "a dictionary containing the " "'commit_required' key with a Boolean value " "indicating whether commit_bios_config() " "needs to be called to make the changes.")) @task_manager.require_exclusive_lock
[docs] def set_bios_config(self, task, **kwargs): """Change BIOS settings. This method is used to change the BIOS settings on a node. :param task: a TaskManager instance containing the node to act on. :param kwargs: a dictionary of {'AttributeName': 'NewValue'} :raises: DracOperationError on an error from python-dracclient. :returns: A dictionary containing the ``commit_required`` key with a Boolean value indicating whether commit_bios_config() needs to be called to make the changes. """ return drac_bios.set_config(task, **kwargs)
@METRICS.timer('DracVendorPassthru.commit_bios_config') @base.passthru(['POST'], async=False, description=_("Commit a BIOS configuration job submitted " "through set_bios_config(). Required " "argument: 'reboot' - indicates whether a " "reboot job should be automatically created " "with the config job. Returns a dictionary " "containing the 'job_id' key with the ID of " "the newly created config job, and the " "'reboot_required' key indicating whether " "the node needs to be rebooted to start the " "config job.")) @task_manager.require_exclusive_lock
[docs] def commit_bios_config(self, task, reboot=False, **kwargs): """Commit a BIOS configuration job. This method is used to commit a BIOS configuration job. submitted through set_bios_config(). :param task: a TaskManager instance containing the node to act on. :param reboot: indicates whether a reboot job should be automatically created with the config job. :param kwargs: not used. :raises: DracOperationError on an error from python-dracclient. :returns: A dictionary containing the ``job_id`` key with the id of the newly created config job, and the ``reboot_required`` key indicating whether the node needs to be rebooted to start the config job. """ job_id = drac_bios.commit_config(task, reboot=reboot) return {'job_id': job_id, 'reboot_required': not reboot}
@METRICS.timer('DracVendorPassthru.abandon_bios_config') @base.passthru(['DELETE'], async=False, description=_("Abandon a BIOS configuration job previously " "submitted through set_bios_config().")) @task_manager.require_exclusive_lock
[docs] def abandon_bios_config(self, task, **kwargs): """Abandon a BIOS configuration job. This method is used to abandon a BIOS configuration previously submitted through set_bios_config(). :param task: a TaskManager instance containing the node to act on. :param kwargs: not used. :raises: DracOperationError on an error from python-dracclient. """ drac_bios.abandon_config(task)
@base.passthru(['GET'], async=False, description=_('Returns a dictionary containing the key ' '"unfinished_jobs"; its value is a list of ' 'dictionaries. Each dictionary represents ' 'an unfinished config Job object.'))
[docs] def list_unfinished_jobs(self, task, **kwargs): """List unfinished config jobs of the node. :param task: a TaskManager instance containing the node to act on. :param kwargs: not used. :returns: a dictionary containing the ``unfinished_jobs`` key; this key points to a list of dicts, with each dict representing a Job object. :raises: DracOperationError on an error from python-dracclient. """ jobs = drac_job.list_unfinished_jobs(task.node) # FIXME(mgould) Do this without calling private methods. return {'unfinished_jobs': [job._asdict() for job in jobs]}