ironic.drivers.modules.ilo.boot
Module¶Boot Interface for iLO drivers and its supporting methods.
ironic.drivers.modules.ilo.boot.
IloPXEBoot
[source]¶Bases: ironic.drivers.modules.pxe.PXEBoot
clean_up_instance
(*args, **kwargs)[source]¶Cleans up the boot of instance.
This method cleans up the PXE environment that was setup for booting the instance. It unlinks the instance kernel/ramdisk in the node’s directory in tftproot and removes it’s PXE config.
Parameters: | task – a task from TaskManager. |
---|---|
Returns: | None |
Raises: | IloOperationError, if some operation on iLO failed. |
prepare_instance
(*args, **kwargs)[source]¶Prepares the boot of instance.
This method prepares the boot of the instance after reading relevant information from the node’s instance_info. In case of netboot, it updates the dhcp entries and switches the PXE config. In case of localboot, it cleans up the PXE config.
Parameters: | task – a task from TaskManager. |
---|---|
Returns: | None |
Raises: | IloOperationError, if some operation on iLO failed. |
prepare_ramdisk
(*args, **kwargs)[source]¶Prepares the boot of Ironic ramdisk using PXE.
This method prepares the boot of the deploy ramdisk after reading relevant information from the node’s driver_info and instance_info.
Parameters: |
|
---|---|
Returns: | None |
Raises: | MissingParameterValue, if some information is missing in node’s driver_info or instance_info. |
Raises: | InvalidParameterValue, if some information provided is invalid. |
Raises: | IronicException, if some power or set boot boot device operation failed on the node. |
Raises: | IloOperationError, if some operation on iLO failed. |
ironic.drivers.modules.ilo.boot.
IloVirtualMediaBoot
[source]¶Bases: ironic.drivers.base.BootInterface
clean_up_instance
(*args, **kwargs)[source]¶Cleans up the boot of instance.
This method cleans up the environment that was setup for booting the instance. It ejects virtual media
Parameters: | task – a task from TaskManager. |
---|---|
Returns: | None |
Raises: | IloOperationError, if some operation on iLO failed. |
clean_up_ramdisk
(*args, **kwargs)[source]¶Cleans up the boot of ironic ramdisk.
This method cleans up virtual media devices setup for the deploy ramdisk.
Parameters: | task – a task from TaskManager. |
---|---|
Returns: | None |
Raises: | IloOperationError, if some operation on iLO failed. |
prepare_instance
(*args, **kwargs)[source]¶Prepares the boot of instance.
This method prepares the boot of the instance after reading relevant information from the node’s instance_info. It does the following depending on boot_option for deploy:
Parameters: | task – a task from TaskManager. |
---|---|
Returns: | None |
Raises: | IloOperationError, if some operation on iLO failed. |
prepare_ramdisk
(*args, **kwargs)[source]¶Prepares the boot of deploy ramdisk using virtual media.
This method prepares the boot of the deploy ramdisk after reading relevant information from the node’s driver_info and instance_info.
Parameters: |
|
---|---|
Returns: | None |
Raises: | MissingParameterValue, if some information is missing in node’s driver_info or instance_info. |
Raises: | InvalidParameterValue, if some information provided is invalid. |
Raises: | IronicException, if some power or set boot boot device operation failed on the node. |
Raises: | IloOperationError, if some operation on iLO failed. |
validate
(*args, **kwargs)[source]¶Validate the deployment information for the task’s node.
Parameters: | task – a TaskManager instance containing the node to act on. |
---|---|
Raises: | InvalidParameterValue, if some information is invalid. |
Raises: | MissingParameterValue if ‘kernel_id’ and ‘ramdisk_id’ are missing in the Glance image or ‘kernel’ and ‘ramdisk’ not provided in instance_info for non-Glance image. |
Except where otherwise noted, this document is licensed under Creative Commons Attribution 3.0 License. See all OpenStack Legal Documents.