Bases: ironic.drivers.base.DeployInterface
Interface for deploy-related actions.
Clean up the deployment environment for this 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.
Parameters: | task – a TaskManager instance. |
---|
Perform a deployment to a 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.
Parameters: | task – a TaskManager instance. |
---|---|
Returns: | status of the deploy. One of ironic.common.states. |
Execute a clean step asynchronously on the agent.
Parameters: |
|
---|---|
Raises: | NodeCleaningFailure if the agent does not return a command status |
Returns: | states.CLEANWAIT to signify the step will be completed async |
Get the list of clean steps from the agent.
Parameters: | task – a TaskManager object containing the node |
---|---|
Raises NodeCleaningFailure: | |
if the clean steps are not yet available (cached), for example, when a node has just been enrolled and has not been cleaned yet. | |
Returns: | A list of clean step dictionaries |
Return the properties of the interface.
Returns: | dictionary of <property name>:<property description> entries. |
---|
Prepare the deployment environment for this node.
Parameters: | task – a TaskManager instance. |
---|
Boot into the agent to prepare for cleaning.
Parameters: | task – a TaskManager object containing the node |
---|---|
Raises NodeCleaningFailure: | |
if the previous cleaning ports cannot be removed or if new cleaning ports cannot be created | |
Returns: | states.CLEANWAIT to signify an asynchronous prepare |
Take over management of this node from a dead conductor.
Since this deploy interface only does local boot, there’s no need for this conductor to do anything when it takes over management of this node.
Parameters: | task – a TaskManager instance. |
---|
Tear down a previous deployment on the task’s node.
Parameters: | task – a TaskManager instance. |
---|---|
Returns: | status of the deploy. One of ironic.common.states. |
Clean up the PXE and DHCP files after cleaning.
Parameters: | task – a TaskManager object containing the node |
---|---|
Raises NodeCleaningFailure: | |
if the cleaning ports cannot be removed |
Validate the driver-specific Node deployment info.
This method validates whether the properties of the supplied node contain the required information for this driver to deploy images to the node.
Parameters: | task – a TaskManager instance |
---|---|
Raises: | MissingParameterValue, if any of the required parameters are missing. |
Raises: | InvalidParameterValue, if any of the parameters have invalid value. |
Bases: ironic.drivers.base.RAIDInterface
Implementation of RAIDInterface which uses agent ramdisk.
Create a RAID configuration on a bare metal using agent ramdisk.
This method creates a RAID configuration on the given node.
Parameters: |
|
---|---|
Returns: | states.CLEANWAIT if operation was successfully invoked. |
Raises: | MissingParameterValue, if node.target_raid_config is missing or was found to be empty after skipping root volume and/or non-root volumes. |
Bases: ironic.drivers.modules.agent_base_vendor.BaseAgentVendor