Source code for ironic.drivers.modules.ilo.vendor

# Copyright 2022 Hewlett Packard Enterprise Development LP
# 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.
"""
Vendor Interface for iLO drivers and its supporting methods.
"""

from ironic_lib import metrics_utils

from ironic.common import exception
from ironic.common.i18n import _
from ironic.common import states
from ironic.conductor import task_manager
from ironic.conductor import utils as manager_utils
from ironic.drivers import base
from ironic.drivers.modules import deploy_utils
from ironic.drivers.modules.ilo import common as ilo_common
from ironic.drivers.modules.redfish import vendor as redfish_vendor

METRICS = metrics_utils.get_metrics_logger(__name__)


[docs] class VendorPassthru(redfish_vendor.RedfishVendorPassthru): """Vendor-specific interfaces for iLO deploy drivers."""
[docs] @METRICS.timer('IloVendorPassthru.validate') def validate(self, task, method, **kwargs): """Validate vendor-specific actions. Checks if a valid vendor passthru method was passed and validates the parameters for the vendor passthru method. :param task: a TaskManager instance containing the node to act on. :param method: method to be validated. :param kwargs: kwargs containing the vendor passthru method's parameters. :raises: MissingParameterValue, if some required parameters were not passed. :raises: InvalidParameterValue, if any of the parameters have invalid value. :raises: IloOperationNotSupported, if the driver does not support the given operation with ilo vendor interface. """ if method == 'boot_into_iso': self._validate_boot_into_iso(task, kwargs) return redfish_event_methods = ['create_subscription', 'delete_subscription', 'get_all_subscriptions', 'get_subscription'] if method in redfish_event_methods: self._validate_is_it_a_supported_system(task) ilo_common.parse_driver_info(task.node) ilo_common.update_redfish_properties(task) if method == 'eject_vmedia': error_message = _(method + ( " can not be performed as the driver does not support " "eject_vmedia through ilo vendor interface")) raise exception.IloOperationNotSupported(operation=method, error=error_message) super(VendorPassthru, self).validate(task, method, **kwargs)
def _validate_boot_into_iso(self, task, kwargs): """Validates if attach_iso can be called and if inputs are proper.""" if not (task.node.provision_state == states.MANAGEABLE or task.node.maintenance is True): msg = (_("The requested action 'boot_into_iso' can be performed " "only when node %(node_uuid)s is in %(state)s state or " "in 'maintenance' mode") % {'node_uuid': task.node.uuid, 'state': states.MANAGEABLE}) raise exception.InvalidStateRequested(msg) boot_iso = kwargs.get('boot_iso_href') d_info = {'boot_iso_href': boot_iso} error_msg = _("Error validating input for boot_into_iso vendor " "passthru. Some parameters were not provided: ") deploy_utils.check_for_missing_params(d_info, error_msg) # Validate that the image exists deploy_utils.get_image_properties(task.context, boot_iso)
[docs] @METRICS.timer('IloVendorPassthru.boot_into_iso') @base.passthru(['POST'], description=_("Attaches an ISO image and reboots the node. " "Required argument: 'boot_iso_href' - href " "of the image to be booted. This can be a " "Glance UUID or an HTTP(S) URL.")) @task_manager.require_exclusive_lock def boot_into_iso(self, task, **kwargs): """Attaches an ISO image in glance and reboots bare metal. This method accepts an ISO image href (a Glance UUID or an HTTP(S) URL) attaches it as virtual media and then reboots the node. This is useful for debugging purposes. This can be invoked only when the node is in manage state. :param task: A TaskManager object. :param kwargs: The arguments sent with vendor passthru. The expected kwargs are:: 'boot_iso_href': href of the image to be booted. This can be a Glance UUID or an HTTP(S) URL. """ ilo_common.setup_vmedia(task, kwargs['boot_iso_href'], ramdisk_options=None) manager_utils.node_power_action(task, states.REBOOT)
def _validate_is_it_a_supported_system(self, task): """Verify and raise an exception if it is not a supported system. :param task: A TaskManager object. :param kwargs: The arguments sent with vendor passthru. :raises: IloOperationNotSupported, if the node is not a Gen10 or Gen10 Plus system. """ node = task.node ilo_object = ilo_common.get_ilo_object(node) product_name = ilo_object.get_product_name() operation = _("Event methods") error_message = _(operation + ( " can not be performed as the driver does not support Event " "methods on the given node")) if 'Gen10' not in product_name: raise exception.IloOperationNotSupported(operation=operation, error=error_message)