Steps

What are steps?

Steps are exactly that, steps to achieve a goal, and in most cases, they are what an operator requested.

However, originally they were the internal list of actions to achieve to perform automated cleaning. The conductor would determine a list of steps or actions to take by generating a list of steps from data the conductor via drivers, the ironic-python-agent, and any loaded hardware managers determined to be needed.

As time passed and Ironic’s capabilities were extended, this was extended to manual cleaning, and later into deploy steps, and deploy templates allowing an operator to request for firmware to be updated by a driver, or RAID to be configured by the agent prior to the machine being released to the end user for use.

Reserved Functional Steps

In the execution of the cleaning, and deployment steps frameworks, some step names are reserved for specific functions which can be invoked by a user to perform specific actions.

Step Name

Description

hold

Pauses the execution of the steps by moving the node from the current deploy wait or clean wait state to the appropriate “hold” state, such as deploy hold or clean hold. The process can be resumed by sending a unhold verb to the provision state API endpoint which will result in the process resuming upon the next heartbeat operation. During this time, heartbeat operations will continue be recorded by Ironic, but will not be acted upon, preventing the node from timing out.

This step cannot be used against a child node in the context of being requested when executing against a parent node.

The use case for this verb is if you have external automation or processes which need to be executed in the entire process to achieve the overall goal.

power_on

Powers on the node, which may be useful if a node’s power must be toggled multiple times to enable embedded behavior such as to boot from network. This step can be executed against child nodes.

power_off

Turn the node power off via the conductor. This step can be used against child nodes. When used outside of the context of a child node, any agent token metadata is also removed as so the machine can reboot back to the agent, if applicable.

reboot

Reboot the node utilizing the conductor. This generally signals for power to be turned off and back on, however driver specific code may request an CPU interrupt based reset. This step can be executed on child nodes.

wait

Causes a brief pause in the overall step execution which pauses until the next heartbeat operation, unless a seconds argument is provided. If a seconds argument is provided, then the step execution will pause for the requested amount of time.

In the these cases, the interface upon which the method is expected is ignored, and the step is acted upon based upon just the step’s name.

Example

In this example, we utilize the cleaning step erase_devices and then trigger hold of the node. In this specific case the node will enter a clean hold state.

{
  "target":"clean",
  "clean_steps": [{
    "interface": "deploy",
    "step": "erase_devices"
  },
  {
    "interface": "deploy",
    "step": "hold"
  }]
}

Once you have completed whatever action which needed to be performed while the node was in a held state, you will need to issue an unhold provision state command, via the API or command line to inform the node to proceed.

Set the environment

When using steps with the functionality to execute on child nodes, i.e. nodes who a populated parent_node field, you always want to ensure you have set the environment appropriately for your next action.

For example, if you are executing steps against a parent node, which then execute against a child node via the execute_on_child_nodes step option, and it requires power to be on, you will want to explicitly ensure the power is on for the parent node unless the child node can operate independently, as signaled through the driver_info option has_dedicated_power_supply on the child node. Power is an obvious case because Ironic has guarding logic internally to attempt to power-on the parent node, but it cannot be an after thought due to internal task locking.

Power specifically aside, the general principle applies to the execution of all steps. You need always want to build upon the prior step or existing existing known state of the system.

Note

Ironic will attempt to ensure power is active for a parent_node when powering on a child node. Conversely, Ironic will also attempt to power down child nodes if a parent node is requested to be turned off, unless the has_dedicated_power_supply option is set for the child node. This pattern of behavior prevents parent nodes from being automatically powered back on should a child node be left online.

BMC Clock Verification Step (Verify Phase)

The Redfish management interface includes a verify step called verify_bmc_clock which automatically checks and sets the BMC clock during node registration.

This step compares the system time on the conductor with the BMC’s time reported via Redfish. If the clock differs by more than one second, Ironic updates the BMC’s clock to match the conductor’s UTC time.

This step runs automatically if enabled and the node supports the Redfish interface.

How to Enable

The feature is controlled by the following configuration option in ironic.conf:

[redfish]
enable_verify_bmc_clock = true

By default, this option is set to false. To enable it, set it to true and restart the ironic conductor.

When It Runs

verify_bmc_clock step is triggered during the automated verify step of the node registration, before inspection and deployment.

Note:

  • If the BMC does not support setting the clock via Redfish, the step will fail.

  • If the time cannot be synchronized within 1 second, the step will raise a NodeVerifyFailure.

  • If the configuration option is disabled, the step is skipped.

  • verify_bmc_clock is defined with a priority of 1 and is not interruptible.

  • This is different from the manual clean step set_bmc_clock which allows explicit datetime setting through the API, but also defaults to the current conductor UTC time when target_datetime is omitted.

Security Controls

An operator may choose to disallow specific steps OR restrict certain steps to particular roles or access levels in the custom policy framework.

Disallowing Steps

The Ironic API configuration section contains three configuration options to enable the restriction of steps from being invoked.

For deployment related step executions, the api.disallow_deploy_steps option can be leveraged to restrict steps access in the context of deployment operations.

Similarly, however for servicing operations, the api.disallow_service_steps can be used in similar fashion.

Cleaning operation step invocations have the same basic parameter in the form of api.disallow_clean_steps.

Note

These configurations are enforced in both the API and Conductor of Ironic.

Restricting steps using RBAC

Optionally, an operator could create a custom policy rule which would apply to step invocation logic in the Ironic API, bringing together the context of the Requester, their Access rights, and the step being requested.

This allows for an opt-in policy interface where an operator can require a step can only be invoked by, for example, by a user with an admin role, where normally a user may be able to invoke all of the other steps for that phase of the step framework.

The way this works is by mapping the step name into the policy framework by delimiting the step name into the generalized baremetal:step:execute policy name space by merging it with the step name, resulting in baremetal:step:execute:<step_interface>.<step_name>

For example, a custom policy YAML may have a line such as the line below to restrict creation of RAID sets:

baremetal:step:execute:raid.apply_configuration: "role:admin"

Rules can also reference node ownership for fine-grained control:

baremetal:step:execute:bios.apply_configuration: "role:admin and project_id:%(node.owner)s"

Enforcement points

Step-level RBAC policies are enforced in the following locations:

  • Direct step requests – When a user provides steps directly via the API (deploy, clean, or service), the policy is checked at the API layer with full node context, including node.owner and node.lessee.

  • Runbook creation and update – When a user creates or modifies a runbook, step-level policies are checked against the requester’s credentials. Since no specific node is involved at creation time, policy rules that reference node.owner or node.lessee cannot be evaluated and are ignored; only role-based rules (e.g. role:admin) are enforced.

  • Project-scoped runbook execution – When a runbook owned by a project (i.e. not admin-approved) is used for a provision action, step-level policies are re-checked with full node context. This allows ownership-based rules to apply at execution time.

  • Admin-approved runbooks – Runbooks without an owner (system-scoped) or marked as public are considered admin-approved. Their steps are trusted at execution time and step-level policies are not re-checked.

  • Deploy templates – Deploy templates can only be created by system administrators. Their steps are implicitly trusted and step-level policies are not checked at execution time.