Abstract base classes for drivers.
ironic.drivers.base.
ALL_INTERFACES
= {'bios', 'boot', 'console', 'deploy', 'inspect', 'management', 'network', 'power', 'raid', 'rescue', 'storage', 'vendor'}¶Constant holding all known interfaces.
ironic.drivers.base.
BIOSInterface
[source]¶Bases: ironic.drivers.base.BaseInterface
apply_configuration
(task, settings)[source]¶Validate & apply BIOS settings on the given node.
This method takes the BIOS settings from the settings param and applies BIOS settings on the given node. It may also validate the given bios settings before applying any settings and manage failures when setting an invalid BIOS config. In the case of needing password to update the BIOS config, it will be taken from the driver_info properties. After the BIOS configuration is done, cache_bios_settings will be called to update the node’s BIOS setting table with the BIOS configuration applied on the node.
task – a TaskManager instance.
settings – Dictonary containing the BIOS configuration.
UnsupportedDriverExtension, if the node’s driver doesn’t support BIOS configuration.
InvalidParameterValue, if validation of settings fails.
MissingParameterValue, if some required parameters are missing.
states.CLEANWAIT if BIOS configuration is in progress asynchronously or None if it is complete.
cache_bios_settings
(task)[source]¶Store or update BIOS properties on the given node.
This method stores BIOS properties to the bios_settings table during ‘cleaning’ operation and updates bios_settings table when apply_configuration() and factory_reset() are called to set new BIOS configurations. It will also update the timestamp of each bios setting.
task – a TaskManager instance.
UnsupportedDriverExtension, if the node’s driver doesn’t support getting BIOS properties from bare metal.
None.
factory_reset
(task)[source]¶Reset BIOS configuration to factory default on the given node.
This method resets BIOS configuration to factory default on the given node. After the BIOS reset action is done, cache_bios_settings will be called to update the node’s BIOS settings table with default bios settings.
task – a TaskManager instance.
UnsupportedDriverExtension, if the node’s driver doesn’t support BIOS reset.
states.CLEANWAIT if BIOS configuration is in progress asynchronously or None if it is complete.
interface_type
= 'bios'¶ironic.drivers.base.
BareDriver
[source]¶Bases: object
A bare driver object which will have interfaces attached later.
Any composable interfaces should be added as class attributes of this class, as well as appended to core_interfaces or standard_interfaces here.
all_interfaces
¶bios
= None¶Standard attribute for BIOS related features.
A reference to an instance of :class:BIOSInterface.
boot
= None¶Standard attribute for boot related features.
A reference to an instance of :class:BootInterface.
console
= None¶Standard attribute for managing console access.
A reference to an instance of :class:ConsoleInterface.
core_interfaces
¶Interfaces that are required to be implemented.
deploy
= None¶Core attribute for managing deployments.
A reference to an instance of :class:DeployInterface.
get_properties
()[source]¶Get the properties of the driver.
dictionary of <property name>:<property description> entries.
inspect
= None¶Standard attribute for inspection related features.
A reference to an instance of :class:InspectInterface.
management
= None¶Standard attribute for management related features.
A reference to an instance of :class:ManagementInterface.
network
= None¶Core attribute for network connectivity.
A reference to an instance of :class:NetworkInterface.
non_vendor_interfaces
¶optional_interfaces
¶Interfaces that can be no-op.
power
= None¶Core attribute for managing power state.
A reference to an instance of :class:PowerInterface.
raid
= None¶Standard attribute for RAID related features.
A reference to an instance of :class:RaidInterface.
rescue
= None¶Standard attribute for accessing rescue features.
A reference to an instance of :class:RescueInterface.
storage
= None¶Standard attribute for (remote) storage interface.
A reference to an instance of :class:StorageInterface.
vendor
= None¶Attribute for accessing any vendor-specific extensions.
A reference to an instance of :class:VendorInterface.
ironic.drivers.base.
BaseInterface
[source]¶Bases: object
A base interface implementing common functions for Driver Interfaces.
execute_clean_step
(task, step)[source]¶Execute the clean step on task.node.
A clean step must take a single positional argument: a TaskManager object. It may take one or more keyword variable arguments (for use with manual cleaning only.)
A step can be executed synchronously or asynchronously. A step should return None if the method has completed synchronously or states.CLEANWAIT if the step will continue to execute asynchronously. If the step executes asynchronously, it should issue a call to the ‘continue_node_clean’ RPC, so the conductor can begin the next clean step.
task – A TaskManager object
step – The clean step dictionary representing the step to execute
None if this method has completed synchronously, or states.CLEANWAIT if the step will continue to execute asynchronously.
execute_deploy_step
(task, step)[source]¶Execute the deploy step on task.node.
A deploy step must take a single positional argument: a TaskManager object. It may take one or more keyword variable arguments (for use in the future, when deploy steps can be specified via the API).
A step can be executed synchronously or asynchronously. A step should return None if the method has completed synchronously or states.DEPLOYWAIT if the step will continue to execute asynchronously. If the step executes asynchronously, it should issue a call to the ‘continue_node_deploy’ RPC, so the conductor can begin the next deploy step.
task – A TaskManager object
step – The deploy step dictionary representing the step to execute
None if this method has completed synchronously, or states.DEPLOYWAIT if the step will continue to execute asynchronously.
get_clean_steps
(task)[source]¶Get a list of (enabled and disabled) clean steps for the interface.
This function will return all clean steps (both enabled and disabled) for the interface, in an unordered list.
task – A TaskManager object, useful for interfaces overriding this function
NodeCleaningFailure – if there is a problem getting the steps from the driver. For example, when a node (using an agent driver) has just been enrolled and the agent isn’t alive yet to be queried for the available clean steps.
A list of clean step dictionaries
get_deploy_steps
(task)[source]¶Get a list of (enabled and disabled) deploy steps for the interface.
This function will return all deploy steps (both enabled and disabled) for the interface, in an unordered list.
task – A TaskManager object, useful for interfaces overriding this function
InstanceDeployFailure – if there is a problem getting the steps from the driver. For example, when a node (using an agent driver) has just been enrolled and the agent isn’t alive yet to be queried for the available deploy steps.
A list of deploy step dictionaries
get_properties
()[source]¶Return the properties of the interface.
dictionary of <property name>:<property description> entries.
interface_type
= 'base'¶Interface type, used for clean steps and logging.
supported
= True¶Indicates if an interface is supported.
This will be set to False for interfaces which are untested in first- or third-party CI, or in the process of being deprecated.
validate
(task)[source]¶Validate the driver-specific Node deployment info.
This method validates whether the ‘driver_info’ and/or ‘instance_info’ properties of the task’s node contains the required information for this interface to function.
This method is often executed synchronously in API requests, so it should not conduct long-running checks.
task – A TaskManager instance containing the node to act on.
InvalidParameterValue on malformed parameter(s)
MissingParameterValue on missing parameter(s)
ironic.drivers.base.
BootInterface
[source]¶Bases: ironic.drivers.base.BaseInterface
Interface for boot-related actions.
capabilities
= []¶clean_up_instance
(task)[source]¶Cleans up the boot of instance.
This method cleans up the environment that was setup for booting the instance.
task – A task from TaskManager.
None
clean_up_ramdisk
(task)[source]¶Cleans up the boot of ironic ramdisk.
This method cleans up the environment that was setup for booting the deploy or rescue ramdisk.
task – A task from TaskManager.
None
interface_type
= 'boot'¶prepare_instance
(task)[source]¶Prepares the boot of instance.
This method prepares the boot of the instance after reading relevant information from the node’s database.
task – A task from TaskManager.
None
prepare_ramdisk
(task, ramdisk_params)[source]¶Prepares the boot of Ironic ramdisk.
This method prepares the boot of the deploy or rescue ramdisk after reading relevant information from the node’s database.
task – A task from TaskManager.
ramdisk_params –
The options to be passed to the ironic ramdisk. Different implementations might want to boot the ramdisk in different ways by passing parameters to them. For example,
When Agent ramdisk is booted to deploy a node, it takes the parameters ipa-api-url, etc.
Other implementations can make use of ramdisk_params to pass such information. Different implementations of boot interface will have different ways of passing parameters to the ramdisk.
None
ironic.drivers.base.
ConsoleInterface
[source]¶Bases: ironic.drivers.base.BaseInterface
Interface for console-related actions.
get_console
(task)[source]¶Get connection information about the console.
This method should return the necessary information for the client to access the console.
task – A TaskManager instance containing the node to act on.
the console connection information.
interface_type
= 'console'¶ironic.drivers.base.
DeployInterface
[source]¶Bases: ironic.drivers.base.BaseInterface
Interface for deploy-related actions.
clean_up
(task)[source]¶Clean up the deployment environment for the task’s node.
If preparation of the deployment environment ahead of time is possible, this method should be implemented by the driver. It should erase anything cached by the prepare method.
If implemented, this method must be idempotent. It may be called multiple times for the same node on the same conductor, and it may be called by multiple conductors in parallel. Therefore, it must not require an exclusive lock.
This method is called before tear_down.
task – A TaskManager instance containing the node to act on.
deploy
(task)[source]¶Perform a deployment to the task’s node.
Perform the necessary work to deploy an image onto the specified node. This method will be called after prepare(), which may have already performed any preparatory steps, such as pre-caching some data for the node.
task – A TaskManager instance containing the node to act on.
status of the deploy. One of ironic.common.states.
heartbeat
(task, callback_url, agent_version)[source]¶Record a heartbeat for the node.
task – A TaskManager instance containing the node to act on.
callback_url – a URL to use to call to the ramdisk.
agent_version – The version of the agent that is heartbeating
None
interface_type
= 'deploy'¶prepare
(task)[source]¶Prepare the deployment environment for the task’s node.
If preparation of the deployment environment ahead of time is possible, this method should be implemented by the driver.
If implemented, this method must be idempotent. It may be called multiple times for the same node on the same conductor.
This method is called before deploy.
task – A TaskManager instance containing the node to act on.
prepare_cleaning
(task)[source]¶Prepare the node for cleaning tasks.
For example, nodes that use the Ironic Python Agent will need to boot the ramdisk in order to do in-band cleaning tasks.
If the function is asynchronous, the driver will need to handle settings node.driver_internal_info[‘clean_steps’] and node.clean_step, as they would be set in ironic.conductor.manager._do_node_clean, but cannot be set when this is asynchronous. After, the interface should make an RPC call to continue_node_cleaning to start cleaning.
NOTE(JoshNang) this should be moved to BootInterface when it gets implemented.
task – A TaskManager instance containing the node to act on.
If this function is going to be asynchronous, should return states.CLEANWAIT. Otherwise, should return None. The interface will need to call _get_cleaning_steps and then RPC to continue_node_cleaning
take_over
(task)[source]¶Take over management of this task’s node from a dead conductor.
If conductors’ hosts maintain a static relationship to nodes, this method should be implemented by the driver to allow conductors to perform the necessary work during the remapping of nodes to conductors when a conductor joins or leaves the cluster.
Neutron must forward DHCP BOOT requests to a conductor which has prepared the tftpboot environment for the given node. When a conductor goes offline, another conductor must change this setting in Neutron as part of remapping that node’s control to itself. This is performed within the takeover method.
task – A TaskManager instance containing the node to act on.
tear_down
(task)[source]¶Tear down a previous deployment on the task’s node.
Given a node that has been previously deployed to, do all cleanup and tear down necessary to “un-deploy” that node.
task – A TaskManager instance containing the node to act on.
status of the deploy. One of ironic.common.states.
tear_down_cleaning
(task)[source]¶Tear down after cleaning is completed.
Given that cleaning is complete, do all cleanup and tear down necessary to allow the node to be deployed to again.
NOTE(JoshNang) this should be moved to BootInterface when it gets implemented.
task – A TaskManager instance containing the node to act on.
ironic.drivers.base.
InspectInterface
[source]¶Bases: ironic.drivers.base.BaseInterface
Interface for inspection-related actions.
ESSENTIAL_PROPERTIES
= {'cpu_arch', 'cpus', 'local_gb', 'memory_mb'}¶The properties required by scheduler/deploy.
abort
(task)[source]¶Abort asynchronized hardware inspection.
Abort an ongoing hardware introspection, this is only used for asynchronize based inspect interface.
NOTE: This interface is called with node exclusive lock held, the interface implementation is expected to be a quick processing.
task – a task from TaskManager.
UnsupportedDriverExtension, if the method is not implemented by specific inspect interface.
inspect_hardware
(task)[source]¶Inspect hardware.
Inspect hardware to obtain the essential & additional hardware properties.
task – A task from TaskManager.
HardwareInspectionFailure, if unable to get essential hardware properties.
Resulting state of the inspection i.e. states.MANAGEABLE or None.
interface_type
= 'inspect'¶ironic.drivers.base.
ManagementInterface
[source]¶Bases: ironic.drivers.base.BaseInterface
Interface for management related actions.
get_boot_device
(task)[source]¶Get the current boot device for a node.
Provides the current boot device of the node. Be aware that not all drivers support this.
task – A task from TaskManager.
MissingParameterValue if a required parameter is missing
A dictionary containing:
Ahe boot device, one of ironic.common.boot_devices
or
None if it is unknown.
Whether the boot device will persist to all future boots or not, None if it is unknown.
get_boot_mode
(task)[source]¶Get the current boot mode for a node.
Provides the current boot mode of the node.
may not implement that.
task – A task from TaskManager.
MissingParameterValue if a required parameter is missing
DriverOperationError or its derivative in case of driver runtime error.
UnsupportedDriverExtension if requested operation is not supported by the driver
The boot mode, one of ironic.common.boot_mode
or
None if it is unknown.
get_indicator_state
(task, component, indicator)[source]¶Get current state of the indicator of the hardware component.
task – A task from TaskManager.
component – The hardware component, one of
ironic.common.components
.
indicator – Indicator ID (as reported by get_supported_indicators).
InvalidParameterValue if an invalid component or indicator is specified.
MissingParameterValue if a required parameter is missing
Current state of the indicator, one of
ironic.common.indicator_states
.
get_sensors_data
(task)[source]¶Get sensors data method.
task – A TaskManager instance.
FailedToGetSensorData when getting the sensor data fails.
FailedToParseSensorData when parsing sensor data fails.
Returns a consistent format dict of sensor data grouped by sensor type, which can be processed by Ceilometer. eg,
{
'Sensor Type 1': {
'Sensor ID 1': {
'Sensor Reading': 'current value',
'key1': 'value1',
'key2': 'value2'
},
'Sensor ID 2': {
'Sensor Reading': 'current value',
'key1': 'value1',
'key2': 'value2'
}
},
'Sensor Type 2': {
'Sensor ID 3': {
'Sensor Reading': 'current value',
'key1': 'value1',
'key2': 'value2'
},
'Sensor ID 4': {
'Sensor Reading': 'current value',
'key1': 'value1',
'key2': 'value2'
}
}
}
get_supported_boot_devices
(task)[source]¶Get a list of the supported boot devices.
task – A task from TaskManager.
A list with the supported boot devices defined
in ironic.common.boot_devices
.
get_supported_boot_modes
(task)[source]¶Get a list of the supported boot modes.
may not implement that.
task – A task from TaskManager.
UnsupportedDriverExtension if requested operation is not supported by the driver
DriverOperationError or its derivative in case of driver runtime error.
MissingParameterValue if a required parameter is missing
A list with the supported boot modes defined
in ironic.common.boot_modes
. If boot
mode support can’t be determined, empty list
is returned.
get_supported_indicators
(task, component=None)[source]¶Get a map of the supported indicators (e.g. LEDs).
task – A task from TaskManager.
component – If not None, return indicator information for just this component, otherwise return indicators for all existing components.
A dictionary of hardware components
(ironic.common.components
) as keys with values
being dictionaries having indicator IDs as keys and indicator
properties as values.
{
'chassis': {
'enclosure-0': {
"readonly": true,
"states": [
"off",
"on"
]
}
},
'system':
'blade-A': {
"readonly": true,
"states": [
"pff",
"on"
]
}
},
'drive':
'ssd0': {
"readonly": true,
"states": [
"off",
"on"
]
}
}
}
inject_nmi
(task)[source]¶Inject NMI, Non Maskable Interrupt.
Inject NMI (Non Maskable Interrupt) for a node immediately.
task – A TaskManager instance containing the node to act on.
UnsupportedDriverExtension
interface_type
= 'management'¶set_boot_device
(task, device, persistent=False)[source]¶Set the boot device for a node.
Set the boot device to use on next reboot of the node.
task – A task from TaskManager.
device – The boot device, one of
ironic.common.boot_devices
.
persistent – Boolean value. True if the boot device will persist to all future boots, False if not. Default: False.
InvalidParameterValue if an invalid boot device is specified.
MissingParameterValue if a required parameter is missing
set_boot_mode
(task, mode)[source]¶Set the boot mode for a node.
Set the boot mode to use on next reboot of the node.
Drivers implementing this method are required to implement the get_supported_boot_modes method as well.
one boot mode may not implement that.
task – A task from TaskManager.
mode – The boot mode, one of
ironic.common.boot_modes
.
InvalidParameterValue if an invalid boot mode is specified.
MissingParameterValue if a required parameter is missing
UnsupportedDriverExtension if requested operation is not supported by the driver
DriverOperationError or its derivative in case of driver runtime error.
set_indicator_state
(task, component, indicator, state)[source]¶Set indicator on the hardware component to the desired state.
task – A task from TaskManager.
component – The hardware component, one of
ironic.common.components
.
indicator – Indicator ID (as reported by get_supported_indicators).
Desired state of the indicator, one of
ironic.common.indicator_states
.
InvalidParameterValue if an invalid component, indicator or state is specified.
MissingParameterValue if a required parameter is missing
ironic.drivers.base.
NetworkInterface
[source]¶Bases: ironic.drivers.base.BaseInterface
Base class for network interfaces.
add_cleaning_network
(task)[source]¶Add the cleaning network to a node.
task – A TaskManager instance.
a dictionary in the form {port.uuid: neutron_port[‘id’]}
NetworkError
add_inspection_network
(task)[source]¶Add the inspection network to the node.
task – A TaskManager instance.
a dictionary in the form {port.uuid: neutron_port[‘id’]}
NetworkError
InvalidParameterValue, if the network interface configuration is invalid.
add_provisioning_network
(task)[source]¶Add the provisioning network to a node.
task – A TaskManager instance.
NetworkError
add_rescuing_network
(task)[source]¶Add the rescuing network to the node.
task – A TaskManager instance.
a dictionary in the form {port.uuid: neutron_port[‘id’]}
NetworkError
InvalidParameterValue, if the network interface configuration is invalid.
configure_tenant_networks
(task)[source]¶Configure tenant networks for a node.
task – A TaskManager instance.
NetworkError
get_current_vif
(task, p_obj)[source]¶Returns the currently used VIF associated with port or portgroup
We are booting the node only in one network at a time, and presence of cleaning_vif_port_id means we’re doing cleaning, of provisioning_vif_port_id - provisioning, of rescuing_vif_port_id - rescuing. Otherwise it’s a tenant network.
task – A TaskManager instance.
p_obj – Ironic port or portgroup object.
VIF ID associated with p_obj or None.
get_properties
()[source]¶Return the properties of the interface.
dictionary of <property name>:<property description> entries.
interface_type
= 'network'¶need_power_on
(task)[source]¶Check if ironic node must be powered on before applying network changes
task – A TaskManager instance.
Boolean.
port_changed
(task, port_obj)[source]¶Handle any actions required when a port changes
task – A TaskManager instance.
port_obj – a changed Port object.
Conflict, FailedToUpdateDHCPOptOnPort
portgroup_changed
(task, portgroup_obj)[source]¶Handle any actions required when a port changes
task – A TaskManager instance.
portgroup_obj – a changed Port object.
Conflict, FailedToUpdateDHCPOptOnPort
remove_cleaning_network
(task)[source]¶Remove the cleaning network from a node.
task – A TaskManager instance.
NetworkError
remove_inspection_network
(task)[source]¶Removes the inspection network from a node.
task – A TaskManager instance.
NetworkError
InvalidParameterValue, if the network interface configuration is invalid.
MissingParameterValue, if some parameters are missing.
remove_provisioning_network
(task)[source]¶Remove the provisioning network from a node.
task – A TaskManager instance.
remove_rescuing_network
(task)[source]¶Removes the rescuing network from a node.
task – A TaskManager instance.
NetworkError
InvalidParameterValue, if the network interface configuration is invalid.
MissingParameterValue, if some parameters are missing.
unconfigure_tenant_networks
(task)[source]¶Unconfigure tenant networks for a node.
task – A TaskManager instance.
validate
(task)[source]¶Validates the network interface.
task – A TaskManager instance.
InvalidParameterValue, if the network interface configuration is invalid.
MissingParameterValue, if some parameters are missing.
validate_inspection
(task)[source]¶Validate that the node has required properties for inspection.
task – A TaskManager instance with the node being checked
MissingParameterValue if node is missing one or more required parameters
UnsupportedDriverExtension
validate_rescue
(task)[source]¶Validates the network interface for rescue operation.
task – A TaskManager instance.
InvalidParameterValue, if the network interface configuration is invalid.
MissingParameterValue, if some parameters are missing.
vif_attach
(task, vif_info)[source]¶Attach a virtual network interface to a node
task – A TaskManager instance.
vif_info – a dictionary of information about a VIF. It must have an ‘id’ key, whose value is a unique identifier for that VIF.
NetworkError, VifAlreadyAttached, NoFreePhysicalPorts
ironic.drivers.base.
PowerInterface
[source]¶Bases: ironic.drivers.base.BaseInterface
Interface for power-related actions.
get_power_state
(task)[source]¶Return the power state of the task’s node.
task – A TaskManager instance containing the node to act on.
MissingParameterValue if a required parameter is missing.
A power state. One of ironic.common.states
.
get_supported_power_states
(task)[source]¶Get a list of the supported power states.
task – A TaskManager instance containing the node to act on.
A list with the supported power states defined
in ironic.common.states
.
interface_type
= 'power'¶reboot
(task, timeout=None)[source]¶Perform a hard reboot of the task’s node.
Drivers are expected to properly handle case when node is powered off by powering it on.
task – A TaskManager instance containing the node to act on.
timeout – timeout (in seconds) positive integer (> 0) for any
power state. None
indicates to use default timeout.
MissingParameterValue if a required parameter is missing.
set_power_state
(task, power_state, timeout=None)[source]¶Set the power state of the task’s node.
task – A TaskManager instance containing the node to act on.
power_state – Any power state from ironic.common.states
.
timeout – timeout (in seconds) positive integer (> 0) for any
power state. None
indicates to use default timeout.
MissingParameterValue if a required parameter is missing.
ironic.drivers.base.
RAIDInterface
[source]¶Bases: ironic.drivers.base.BaseInterface
apply_configuration
(task, raid_config, create_root_volume=True, create_nonroot_volumes=True, delete_existing=True)[source]¶Applies RAID configuration on the given node.
task – A TaskManager instance.
raid_config – The RAID configuration to apply.
create_root_volume – Setting this to False indicates not to create root volume that is specified in raid_config. Default value is True.
create_nonroot_volumes – Setting this to False indicates not to create non-root volumes (all except the root volume) in raid_config. Default value is True.
delete_existing – Setting this to True indicates to delete RAID configuration prior to creating the new configuration.
InvalidParameterValue, if the RAID configuration is invalid.
states.DEPLOYWAIT if RAID configuration is in progress asynchronously or None if it is complete.
create_configuration
(task, create_root_volume=True, create_nonroot_volumes=True, delete_existing=True)[source]¶Creates RAID configuration on the given node.
This method creates a RAID configuration on the given node. It assumes that the target RAID configuration is already available in node.target_raid_config. Implementations of this interface are supposed to read the RAID configuration from node.target_raid_config. After the RAID configuration is done (either in this method OR in a call-back method), ironic.common.raid.update_raid_info() may be called to sync the node’s RAID-related information with the RAID configuration applied on the node.
task – A TaskManager instance.
create_root_volume – Setting this to False indicates not to create root volume that is specified in the node’s target_raid_config. Default value is True.
create_nonroot_volumes – Setting this to False indicates not to create non-root volumes (all except the root volume) in the node’s target_raid_config. Default value is True.
delete_existing – Setting this to True indicates to delete RAID configuration prior to creating the new configuration.
states.CLEANWAIT (cleaning) or states.DEPLOYWAIT (deployment) if RAID configuration is in progress asynchronously, or None if it is complete.
delete_configuration
(task)[source]¶Deletes RAID configuration on the given node.
This method deletes the RAID configuration on the give node. After RAID configuration is deleted, node.raid_config should be cleared by the implementation.
task – A TaskManager instance.
states.CLEANWAIT (cleaning) or states.DEPLOYWAIT (deployment) if deletion is in progress asynchronously, or None if it is complete.
get_logical_disk_properties
()[source]¶Get the properties that can be specified for logical disks.
This method returns a dictionary containing the properties that can be specified for logical disks and a textual description for them.
A dictionary containing properties that can be mentioned for logical disks and a textual description for them.
get_properties
()[source]¶Return the properties of the interface.
dictionary of <property name>:<property description> entries.
interface_type
= 'raid'¶validate
(task)[source]¶Validates the RAID Interface.
This method validates the properties defined by Ironic for RAID configuration. Driver implementations of this interface can override this method for doing more validations (such as BMC’s credentials).
task – A TaskManager instance.
InvalidParameterValue, if the RAID configuration is invalid.
MissingParameterValue, if some parameters are missing.
validate_raid_config
(task, raid_config)[source]¶Validates the given RAID configuration.
This method validates the given RAID configuration. Driver implementations of this interface can override this method to support custom parameters for RAID configuration.
task – A TaskManager instance.
raid_config – The RAID configuration to validate.
InvalidParameterValue, if the RAID configuration is invalid.
ironic.drivers.base.
RAID_APPLY_CONFIGURATION_ARGSINFO
= {'create_nonroot_volumes': {'description': "Setting this to 'False' indicates not to create non-root volumes (all except the root volume) in 'raid_config'. Default value is 'True'.", 'required': False}, 'create_root_volume': {'description': "Setting this to 'False' indicates not to create root volume that is specified in 'raid_config'. Default value is 'True'.", 'required': False}, 'delete_existing': {'description': "Setting this to 'True' indicates to delete existing RAID configuration prior to creating the new configuration. Default value is 'True'.", 'required': False}, 'raid_config': {'description': 'The RAID configuration to apply.', 'required': True}}¶This may be used as the deploy_step argsinfo argument for RAID interfaces implementing an apply_configuration deploy step.
ironic.drivers.base.
RescueInterface
[source]¶Bases: ironic.drivers.base.BaseInterface
Interface for rescue-related actions.
clean_up
(task)[source]¶Clean up the rescue environment for the task’s node.
This is particularly useful for nodes where rescuing is asynchronous and a timeout occurs.
task – A TaskManager instance containing the node to act on.
None
interface_type
= 'rescue'¶rescue
(task)[source]¶Boot the task’s node into a rescue environment.
task – A TaskManager instance containing the node to act on.
InstanceRescueFailure if node validation or rescue operation fails.
states.RESCUEWAIT if rescue is in progress asynchronously or states.RESCUE if it is complete.
ironic.drivers.base.
StorageInterface
[source]¶Bases: ironic.drivers.base.BaseInterface
Base class for storage interfaces.
attach_volumes
(task)[source]¶Informs the storage subsystem to attach all volumes for the node.
task – A TaskManager instance.
UnsupportedDriverExtension
detach_volumes
(task)[source]¶Informs the storage subsystem to detach all volumes for the node.
task – A TaskManager instance.
UnsupportedDriverExtension
interface_type
= 'storage'¶ironic.drivers.base.
VendorInterface
[source]¶Bases: ironic.drivers.base.BaseInterface
Interface for all vendor passthru functionality.
Additional vendor- or driver-specific capabilities should be implemented as a method in the class inheriting from this class and use the @passthru or @driver_passthru decorators.
Methods decorated with @driver_passthru should be short-lived because it is a blocking call.
driver_validate
(method, **kwargs)[source]¶Validate driver-vendor-passthru actions.
If invalid, raises an exception; otherwise returns None.
method – method to be validated
kwargs – info for action.
MissingParameterValue if kwargs does not contain certain parameter.
InvalidParameterValue if parameter does not match.
interface_type
= 'vendor'¶validate
(task, method=None, **kwargs)[source]¶Validate vendor-specific actions.
If invalid, raises an exception; otherwise returns None.
task – A task from TaskManager.
method – Method to be validated
kwargs – Info for action.
UnsupportedDriverExtension if ‘method’ can not be mapped to the supported interfaces.
InvalidParameterValue if kwargs does not contain ‘method’.
MissingParameterValue
ironic.drivers.base.
VendorMetadata
(method, metadata)¶Bases: tuple
metadata
¶Alias for field number 1
method
¶Alias for field number 0
ironic.drivers.base.
cache_bios_settings
(func)[source]¶A decorator to cache bios settings after running the function.
func – Function or method to wrap.
ironic.drivers.base.
clean_step
(priority, abortable=False, argsinfo=None)[source]¶Decorator for cleaning steps.
Cleaning steps may be used in manual or automated cleaning.
For automated cleaning, only steps with priorities greater than 0 are used. These steps are ordered by priority from highest value to lowest value. For steps with the same priority, they are ordered by driver interface priority (see conductor.steps.CLEANING_INTERFACE_PRIORITY). execute_clean_step() will be called on each step.
For manual cleaning, the clean steps will be executed in a similar fashion to automated cleaning, but the steps and order of execution must be explicitly specified by the user when invoking the cleaning API.
Decorated clean steps must take as the only positional argument, a TaskManager object. Clean steps used in manual cleaning may also take keyword variable arguments (as described in argsinfo).
Clean steps can be either synchronous or asynchronous. If the step is synchronous, it should return None when finished, and the conductor will continue on to the next step. While the clean step is executing, the node will be in states.CLEANING provision state. If the step is asynchronous, the step should return states.CLEANWAIT to the conductor before it starts the asynchronous work. When the step is complete, the step should make an RPC call to continue_node_clean to move to the next step in cleaning. The node will be in states.CLEANWAIT provision state during the asynchronous work.
Examples:
class MyInterface(base.BaseInterface):
# CONF.example_cleaning_priority should be an int CONF option
@base.clean_step(priority=CONF.example_cleaning_priority)
def example_cleaning(self, task):
# do some cleaning
@base.clean_step(priority=0, abortable=True, argsinfo=
{'size': {'description': 'size of widget (MB)',
'required': True}})
def advanced_clean(self, task, **kwargs):
# do some advanced cleaning
priority – an integer priority, should be a CONF option
abortable – Boolean value. Whether the clean step is abortable or not; defaults to False.
argsinfo –
a dictionary of keyword arguments where key is the name of the argument and value is a dictionary as follows:
'description': <description>. Required. This should include
possible values.
'required': Boolean. Optional; default is False. True if this
argument is required. If so, it must be specified in
the clean request; false if it is optional.
InvalidParameterValue – if any of the arguments are invalid
ironic.drivers.base.
deploy_step
(priority, argsinfo=None)[source]¶Decorator for deployment steps.
Only steps with priorities greater than 0 are used. These steps are ordered by priority from highest value to lowest value. For steps with the same priority, they are ordered by driver interface priority (see conductor.steps.DEPLOYING_INTERFACE_PRIORITY). execute_deploy_step() will be called on each step.
Decorated deploy steps must take as the only positional argument, a TaskManager object.
Deploy steps can be either synchronous or asynchronous. If the step is synchronous, it should return None when finished, and the conductor will continue on to the next step. While the deploy step is executing, the node will be in states.DEPLOYING provision state. If the step is asynchronous, the step should return states.DEPLOYWAIT to the conductor before it starts the asynchronous work. When the step is complete, the step should make an RPC call to continue_node_deploy to move to the next step in deployment. The node will be in states.DEPLOYWAIT provision state during the asynchronous work.
Examples:
class MyInterface(base.BaseInterface):
@base.deploy_step(priority=100)
def example_deploying(self, task):
# do some deploying
priority – an integer (>=0) priority; used for determining the order in which the step is run in the deployment process.
argsinfo –
a dictionary of keyword arguments where key is the name of the argument and value is a dictionary as follows:
'description': <description>. Required. This should include
possible values.
'required': Boolean. Optional; default is False. True if this
argument is required. If so, it must be specified in
the deployment request; false if it is optional.
InvalidParameterValue – if any of the arguments are invalid
Except where otherwise noted, this document is licensed under Creative Commons Attribution 3.0 License. See all OpenStack Legal Documents.