Create a new baremetal allocation.
openstack baremetal allocation create
[--resource-class RESOURCE_CLASS]
[--trait TRAITS]
[--candidate-node CANDIDATE_NODES]
[--name NAME]
[--uuid UUID]
[--owner OWNER]
[--extra <key=value>]
[--wait [<time-out>]]
[--node NODE]
Resource class to request.
A trait to request. Can be specified multiple times.
A candidate node for this allocation. Can be specified multiple times. If at least one is specified, only the provided candidate nodes are considered for the allocation.
Unique name of the allocation.
UUID of the allocation.
Owner of the allocation.
Record arbitrary key/value metadata. Can be specified multiple times.
Wait for the new allocation to become active. An error is returned if allocation fails and –wait is used. Optionally takes a timeout value (in seconds). The default value is 0, meaning it will wait indefinitely.
Backfill this allocation from the provided node that has already been deployed. Bypasses the normal allocation process.
This command is provided by the python-ironicclient plugin.
Unregister baremetal allocation(s).
openstack baremetal allocation delete <allocation> [<allocation> ...]
Allocations(s) to delete (name or UUID).
This command is provided by the python-ironicclient plugin.
List baremetal allocations.
openstack baremetal allocation list
[--format-config-file FORMAT_CONFIG]
[--sort-column SORT_COLUMN]
[--sort-ascending | --sort-descending]
[--limit <limit>]
[--marker <allocation>]
[--sort <key>[:<direction>]]
[--node <node>]
[--resource-class <resource_class>]
[--state <state>]
[--owner <owner>]
[--long | --fields <field> [<field> ...]]
Config file for the dict-to-csv formatter
specify the column(s) to sort the data (columns specified first have a priority, non-existing columns are ignored), can be repeated
sort the column(s) in ascending order
sort the column(s) in descending order
Maximum number of allocations to return per request, 0 for no limit. Default is the maximum number used by the Baremetal API Service.
Allocation UUID (for example, of the last allocation in the list from a previous request). Returns the list of allocations after this UUID.
Sort output by specified allocation fields and directions (asc or desc) (default: asc). Multiple fields and directions can be specified, separated by comma.
Only list allocations of this node (name or UUID).
Only list allocations with this resource class.
Only list allocations in this state.
Only list allocations with this owner.
Show detailed information about the allocations.
One or more allocation fields. Only these fields will be fetched from the server. Can not be used when ‘–long’ is specified.
This command is provided by the python-ironicclient plugin.
Set baremetal allocation properties.
openstack baremetal allocation set
[--name <name>]
[--extra <key=value>]
<allocation>
Set the name of the allocation
Extra property to set on this allocation (repeat option to set multiple extra properties)
Name or UUID of the allocation
This command is provided by the python-ironicclient plugin.
Show baremetal allocation details.
openstack baremetal allocation show
[--fields <field> [<field> ...]]
<id>
One or more allocation fields. Only these fields will be fetched from the server.
UUID or name of the allocation
This command is provided by the python-ironicclient plugin.
Unset baremetal allocation properties.
openstack baremetal allocation unset
[--name]
[--extra <key>]
<allocation>
Unset the name of the allocation
Extra property to unset on this baremetal allocation (repeat option to unset multiple extra property).
Name or UUID of the allocation
This command is provided by the python-ironicclient plugin.
Create a new chassis.
openstack baremetal chassis create
[--description <description>]
[--extra <key=value>]
[--uuid <uuid>]
Description for the chassis
Record arbitrary key/value metadata. Can be specified multiple times.
Unique UUID of the chassis
This command is provided by the python-ironicclient plugin.
Delete a chassis.
openstack baremetal chassis delete <chassis> [<chassis> ...]
UUIDs of chassis to delete
This command is provided by the python-ironicclient plugin.
List the chassis.
openstack baremetal chassis list
[--format-config-file FORMAT_CONFIG]
[--sort-column SORT_COLUMN]
[--sort-ascending | --sort-descending]
[--fields <field> [<field> ...]]
[--limit <limit>]
[--long]
[--marker <chassis>]
[--sort <key>[:<direction>]]
Config file for the dict-to-csv formatter
specify the column(s) to sort the data (columns specified first have a priority, non-existing columns are ignored), can be repeated
sort the column(s) in ascending order
sort the column(s) in descending order
One or more chassis fields. Only these fields will be fetched from the server. Cannot be used when ‘–long’ is specified.
Maximum number of chassis to return per request, 0 for no limit. Default is the maximum number used by the Baremetal API Service.
Show detailed information about the chassis
Chassis UUID (for example, of the last chassis in the list from a previous request). Returns the list of chassis after this UUID.
Sort output by specified chassis fields and directions (asc or desc) (default: asc). Multiple fields and directions can be specified, separated by comma.
This command is provided by the python-ironicclient plugin.
Set chassis properties.
openstack baremetal chassis set
[--description <description>]
[--extra <key=value>]
<chassis>
Set the description of the chassis
Extra to set on this chassis (repeat option to set multiple extras)
UUID of the chassis
This command is provided by the python-ironicclient plugin.
Show chassis details.
openstack baremetal chassis show
[--fields <field> [<field> ...]]
<chassis>
One or more chassis fields. Only these fields will be fetched from the server.
UUID of the chassis
This command is provided by the python-ironicclient plugin.
Unset chassis properties.
openstack baremetal chassis unset
[--description]
[--extra <key>]
<chassis>
Clear the chassis description
Extra to unset on this chassis (repeat option to unset multiple extras)
UUID of the chassis
This command is provided by the python-ironicclient plugin.
List baremetal conductors
openstack baremetal conductor list
[--format-config-file FORMAT_CONFIG]
[--sort-column SORT_COLUMN]
[--sort-ascending | --sort-descending]
[--limit <limit>]
[--marker <conductor>]
[--sort <key>[:<direction>]]
[--long | --fields <field> [<field> ...]]
Config file for the dict-to-csv formatter
specify the column(s) to sort the data (columns specified first have a priority, non-existing columns are ignored), can be repeated
sort the column(s) in ascending order
sort the column(s) in descending order
Maximum number of conductors to return per request, 0 for no limit. Default is the maximum number used by the Baremetal API Service.
Hostname of the conductor (for example, of the last conductor in the list from a previous request). Returns the list of conductors after this conductor.
Sort output by specified conductor fields and directions (asc or desc) (default: asc). Multiple fields and directions can be specified, separated by comma.
Show detailed information about the conductors.
One or more conductor fields. Only these fields will be fetched from the server. Can not be used when ‘–long’ is specified.
This command is provided by the python-ironicclient plugin.
Show baremetal conductor details
openstack baremetal conductor show
[--fields <field> [<field> ...]]
<conductor>
One or more conductor fields. Only these fields will be fetched from the server.
Hostname of the conductor
This command is provided by the python-ironicclient plugin.
Create resources from files
openstack baremetal create <file> [<file> ...]
File (.yaml or .json) containing descriptions of the resources to create. Can be specified multiple times.
This command is provided by the python-ironicclient plugin.
Create a new deploy template
openstack baremetal deploy template create
[--uuid <uuid>]
[--extra <key=value>]
--steps <steps>
<name>
UUID of the deploy template.
Record arbitrary key/value metadata. Can be specified multiple times.
The deploy steps. May be the path to a YAML file containing the deploy steps; OR ‘-’, with the deploy steps being read from standard input; OR a JSON string. The value should be a list of deploy-step dictionaries; each dictionary should have keys ‘interface’, ‘step’, ‘args’ and ‘priority’.
Unique name for this deploy template. Must be a valid trait name
This command is provided by the python-ironicclient plugin.
Delete deploy template(s).
openstack baremetal deploy template delete <template> [<template> ...]
Name(s) or UUID(s) of the deploy template(s) to delete.
This command is provided by the python-ironicclient plugin.
List baremetal deploy templates.
openstack baremetal deploy template list
[--format-config-file FORMAT_CONFIG]
[--sort-column SORT_COLUMN]
[--sort-ascending | --sort-descending]
[--limit <limit>]
[--marker <template>]
[--sort <key>[:<direction>]]
[--long | --fields <field> [<field> ...]]
Config file for the dict-to-csv formatter
specify the column(s) to sort the data (columns specified first have a priority, non-existing columns are ignored), can be repeated
sort the column(s) in ascending order
sort the column(s) in descending order
Maximum number of deploy templates to return per request, 0 for no limit. Default is the maximum number used by the Baremetal API Service.
DeployTemplate UUID (for example, of the last deploy template in the list from a previous request). Returns the list of deploy templates after this UUID.
Sort output by specified deploy template fields and directions (asc or desc) (default: asc). Multiple fields and directions can be specified, separated by comma.
Show detailed information about deploy templates.
One or more deploy template fields. Only these fields will be fetched from the server. Can not be used when ‘–long’ is specified.
This command is provided by the python-ironicclient plugin.
Set baremetal deploy template properties.
openstack baremetal deploy template set
[--name <name>]
[--steps <steps>]
[--extra <key=value>]
<template>
Set unique name of the deploy template. Must be a valid trait name.
The deploy steps. May be the path to a YAML file containing the deploy steps; OR ‘-’, with the deploy steps being read from standard input; OR a JSON string. The value should be a list of deploy-step dictionaries; each dictionary should have keys ‘interface’, ‘step’, ‘args’ and ‘priority’.
Extra to set on this baremetal deploy template (repeat option to set multiple extras).
Name or UUID of the deploy template
This command is provided by the python-ironicclient plugin.
Show baremetal deploy template details.
openstack baremetal deploy template show
[--fields <field> [<field> ...]]
<template>
One or more deploy template fields. Only these fields will be fetched from the server.
Name or UUID of the deploy template.
This command is provided by the python-ironicclient plugin.
Unset baremetal deploy template properties.
openstack baremetal deploy template unset [--extra <key>] <template>
Extra to unset on this baremetal deploy template (repeat option to unset multiple extras).
Name or UUID of the deploy template
This command is provided by the python-ironicclient plugin.
List the enabled drivers.
openstack baremetal driver list
[--format-config-file FORMAT_CONFIG]
[--sort-column SORT_COLUMN]
[--sort-ascending | --sort-descending]
[--type <type>]
[--long | --fields <field> [<field> ...]]
Config file for the dict-to-csv formatter
specify the column(s) to sort the data (columns specified first have a priority, non-existing columns are ignored), can be repeated
sort the column(s) in ascending order
sort the column(s) in descending order
Type of driver (“classic” or “dynamic”). The default is to list all of them.
Show detailed information about the drivers.
One or more node fields. Only these fields will be fetched from the server. Can not be used when ‘–long’ is specified.
This command is provided by the python-ironicclient plugin.
Call a vendor passthru method for a driver.
openstack baremetal driver passthru call
[--arg <key=value>]
[--http-method <http-method>]
<driver>
<method>
Argument to pass to the passthru method (repeat option to specify multiple arguments).
The HTTP method to use in the passthru request. One of DELETE, GET, PATCH, POST, PUT. Defaults to ‘POST’.
Name of the driver.
Vendor passthru method to be called.
This command is provided by the python-ironicclient plugin.
List available vendor passthru methods for a driver.
openstack baremetal driver passthru list
[--format-config-file FORMAT_CONFIG]
[--sort-column SORT_COLUMN]
[--sort-ascending | --sort-descending]
<driver>
Config file for the dict-to-csv formatter
specify the column(s) to sort the data (columns specified first have a priority, non-existing columns are ignored), can be repeated
sort the column(s) in ascending order
sort the column(s) in descending order
Name of the driver.
This command is provided by the python-ironicclient plugin.
List the driver properties.
openstack baremetal driver property list
[--format-config-file FORMAT_CONFIG]
[--sort-column SORT_COLUMN]
[--sort-ascending | --sort-descending]
<driver>
Config file for the dict-to-csv formatter
specify the column(s) to sort the data (columns specified first have a priority, non-existing columns are ignored), can be repeated
sort the column(s) in ascending order
sort the column(s) in descending order
Name of the driver.
This command is provided by the python-ironicclient plugin.
List a driver’s RAID logical disk properties.
openstack baremetal driver raid property list
[--format-config-file FORMAT_CONFIG]
[--sort-column SORT_COLUMN]
[--sort-ascending | --sort-descending]
<driver>
Config file for the dict-to-csv formatter
specify the column(s) to sort the data (columns specified first have a priority, non-existing columns are ignored), can be repeated
sort the column(s) in ascending order
sort the column(s) in descending order
Name of the driver.
This command is provided by the python-ironicclient plugin.
Show information about a driver.
openstack baremetal driver show
[--fields <field> [<field> ...]]
<driver>
One or more node fields. Only these fields will be fetched from the server.
Name of the driver.
This command is provided by the python-ironicclient plugin.
Set provision state of baremetal node to ‘abort’
openstack baremetal node abort <node>
Name or UUID of the node.
This command is provided by the python-ironicclient plugin.
Add traits to a node.
openstack baremetal node add trait <node> <trait> [<trait> ...]
Name or UUID of the node
Trait(s) to add
This command is provided by the python-ironicclient plugin.
Set provision state of baremetal node to ‘adopt’
openstack baremetal node adopt [--wait [<time-out>]] <node>
Wait for a node to reach the desired state, active. Optionally takes a timeout value (in seconds). The default value is 0, meaning it will wait indefinitely.
Name or UUID of the node.
This command is provided by the python-ironicclient plugin.
List a node’s BIOS settings.
openstack baremetal node bios setting list
[--format-config-file FORMAT_CONFIG]
[--sort-column SORT_COLUMN]
[--sort-ascending | --sort-descending]
[--long | --fields <field> [<field> ...]]
<node>
Config file for the dict-to-csv formatter
specify the column(s) to sort the data (columns specified first have a priority, non-existing columns are ignored), can be repeated
sort the column(s) in ascending order
sort the column(s) in descending order
Show detailed information about the BIOS settings.
One or more node fields. Only these fields will be fetched from the server. Can not be used when ‘–long’ is specified.
Name or UUID of the node
This command is provided by the python-ironicclient plugin.
Show a specific BIOS setting for a node.
openstack baremetal node bios setting show <node> <setting name>
Name or UUID of the node
Setting name to show
This command is provided by the python-ironicclient plugin.
Set the boot device for a node
openstack baremetal node boot device set [--persistent] <node> <device>
Make changes persistent for all future boots
Name or UUID of the node
One of bios, cdrom, disk, pxe, safe, wanboot
This command is provided by the python-ironicclient plugin.
Show the boot device information for a node
openstack baremetal node boot device show [--supported] <node>
Show the supported boot devices
Name or UUID of the node
This command is provided by the python-ironicclient plugin.
Set the boot mode for the next baremetal node deployment
openstack baremetal node boot mode set <node> <boot_mode>
Name or UUID of the node.
The boot mode to set for node (uefi/bios)
This command is provided by the python-ironicclient plugin.
Set provision state of baremetal node to ‘clean’
openstack baremetal node clean
[--wait [<time-out>]]
--clean-steps <clean-steps>
<node>
Wait for a node to reach the desired state, manageable. Optionally takes a timeout value (in seconds). The default value is 0, meaning it will wait indefinitely.
The clean steps. May be the path to a YAML file containing the clean steps; OR ‘-’, with the clean steps being read from standard input; OR a JSON string. The value should be a list of clean-step dictionaries; each dictionary should have keys ‘interface’ and ‘step’, and optional key ‘args’.
Name or UUID of the node.
This command is provided by the python-ironicclient plugin.
Disable console access for a node
openstack baremetal node console disable <node>
Name or UUID of the node
This command is provided by the python-ironicclient plugin.
Enable console access for a node
openstack baremetal node console enable <node>
Name or UUID of the node
This command is provided by the python-ironicclient plugin.
Show console information for a node
openstack baremetal node console show <node>
Name or UUID of the node
This command is provided by the python-ironicclient plugin.
Register a new node with the baremetal service
openstack baremetal node create
[--chassis-uuid <chassis>]
--driver <driver>
[--driver-info <key=value>]
[--property <key=value>]
[--extra <key=value>]
[--uuid <uuid>]
[--name <name>]
[--bios-interface <bios_interface>]
[--boot-interface <boot_interface>]
[--console-interface <console_interface>]
[--deploy-interface <deploy_interface>]
[--inspect-interface <inspect_interface>]
[--management-interface <management_interface>]
[--network-data <network data>]
[--network-interface <network_interface>]
[--power-interface <power_interface>]
[--raid-interface <raid_interface>]
[--rescue-interface <rescue_interface>]
[--storage-interface <storage_interface>]
[--vendor-interface <vendor_interface>]
[--resource-class <resource_class>]
[--conductor-group <conductor_group>]
[--automated-clean | --no-automated-clean]
[--owner <owner>]
[--lessee <lessee>]
[--description <description>]
UUID of the chassis that this node belongs to.
Driver used to control the node [REQUIRED].
Key/value pair used by the driver, such as out-of-band management credentials. Can be specified multiple times.
Key/value pair describing the physical characteristics of the node. This is exported to Nova and used by the scheduler. Can be specified multiple times.
Record arbitrary key/value metadata. Can be specified multiple times.
Unique UUID for the node.
Unique name for the node.
BIOS interface used by the node’s driver. This is only applicable when the specified –driver is a hardware type.
Boot interface used by the node’s driver. This is only applicable when the specified –driver is a hardware type.
Console interface used by the node’s driver. This is only applicable when the specified –driver is a hardware type.
Deploy interface used by the node’s driver. This is only applicable when the specified –driver is a hardware type.
Inspect interface used by the node’s driver. This is only applicable when the specified –driver is a hardware type.
Management interface used by the node’s driver. This is only applicable when the specified –driver is a hardware type.
JSON string or a YAML file or ‘-’ for stdin to read static network configuration for the baremetal node associated with this ironic node. Format of this file should comply with Nova network data metadata (network_data.json). Depending on ironic boot interface capabilities being used, network configuration may or may not been served to the node for offline network configuration.
Network interface used for switching node to cleaning/provisioning networks.
Power interface used by the node’s driver. This is only applicable when the specified –driver is a hardware type.
RAID interface used by the node’s driver. This is only applicable when the specified –driver is a hardware type.
Rescue interface used by the node’s driver. This is only applicable when the specified –driver is a hardware type.
Storage interface used by the node’s driver.
Vendor interface used by the node’s driver. This is only applicable when the specified –driver is a hardware type.
Resource class for mapping nodes to Nova flavors
Conductor group the node will belong to
Enable automated cleaning for the node
Explicitly disable automated cleaning for the node
Owner of the node.
Lessee of the node.
Description for the node.
This command is provided by the python-ironicclient plugin.
Unregister baremetal node(s)
openstack baremetal node delete <node> [<node> ...]
Node(s) to delete (name or UUID)
This command is provided by the python-ironicclient plugin.
Set provision state of baremetal node to ‘deploy’
openstack baremetal node deploy
[--wait [<time-out>]]
[--config-drive <config-drive>]
[--deploy-steps <deploy-steps>]
<node>
Wait for a node to reach the desired state, active. Optionally takes a timeout value (in seconds). The default value is 0, meaning it will wait indefinitely.
A gzipped, base64-encoded configuration drive string OR the path to the configuration drive file OR the path to a directory containing the config drive files OR a JSON object to build config drive from. In case it’s a directory, a config drive will be generated from it. In case it’s a JSON object with optional keys meta_data, user_data and network_data, a config drive will be generated on the server side (see the bare metal API reference for more details).
The deploy steps. May be the path to a YAML file containing the deploy steps; OR ‘-’, with the deploy steps being read from standard input; OR a JSON string. The value should be a list of deploy-step dictionaries; each dictionary should have keys ‘interface’ and ‘step’, and optional key ‘args’.
Name or UUID of the node.
This command is provided by the python-ironicclient plugin.
Get history event for a baremetal node.
openstack baremetal node history get <node> <event>
Name or UUID of the node.
UUID of the event.
This command is provided by the python-ironicclient plugin.
Get history events for a baremetal node.
openstack baremetal node history list
[--format-config-file FORMAT_CONFIG]
[--sort-column SORT_COLUMN]
[--sort-ascending | --sort-descending]
[--long]
<node>
Config file for the dict-to-csv formatter
specify the column(s) to sort the data (columns specified first have a priority, non-existing columns are ignored), can be repeated
sort the column(s) in ascending order
sort the column(s) in descending order
Show detailed information about the BIOS settings.
Name or UUID of the node.
This command is provided by the python-ironicclient plugin.
Inject NMI to baremetal node
openstack baremetal node inject nmi <node>
Name or UUID of the node.
This command is provided by the python-ironicclient plugin.
Set provision state of baremetal node to ‘inspect’
openstack baremetal node inspect [--wait [<time-out>]] <node>
Wait for a node to reach the desired state, manageable. Optionally takes a timeout value (in seconds). The default value is 0, meaning it will wait indefinitely.
Name or UUID of the node.
This command is provided by the python-ironicclient plugin.
List baremetal nodes
openstack baremetal node list
[--format-config-file FORMAT_CONFIG]
[--sort-column SORT_COLUMN]
[--sort-ascending | --sort-descending]
[--limit <limit>]
[--marker <node>]
[--sort <key>[:<direction>]]
[--maintenance | --no-maintenance]
[--retired | --no-retired]
[--fault <fault>]
[--associated | --unassociated]
[--provision-state <provision state>]
[--driver <driver>]
[--resource-class <resource class>]
[--conductor-group <conductor_group>]
[--conductor <conductor>]
[--chassis <chassis UUID>]
[--owner <owner>]
[--lessee <lessee>]
[--description-contains <description_contains>]
[--long | --fields <field> [<field> ...]]
Config file for the dict-to-csv formatter
specify the column(s) to sort the data (columns specified first have a priority, non-existing columns are ignored), can be repeated
sort the column(s) in ascending order
sort the column(s) in descending order
Maximum number of nodes to return per request, 0 for no limit. Default is the maximum number used by the Baremetal API Service.
Node UUID (for example, of the last node in the list from a previous request). Returns the list of nodes after this UUID.
Sort output by specified node fields and directions (asc or desc) (default: asc). Multiple fields and directions can be specified, separated by comma.
Limit list to nodes in maintenance mode
Limit list to nodes not in maintenance mode
Limit list to retired nodes.
Limit list to not retired nodes.
List nodes in specified fault.
List only nodes associated with an instance.
List only nodes not associated with an instance.
List nodes in specified provision state.
Limit list to nodes with driver <driver>
Limit list to nodes with resource class <resource class>
Limit list to nodes with conductor group <conductor group>
Limit list to nodes with conductor <conductor>
Limit list to nodes of this chassis
Limit list to nodes with owner <owner>
Limit list to nodes with lessee <lessee>
Limit list to nodes with description contains <description_contains>
Show detailed information about the nodes.
One or more node fields. Only these fields will be fetched from the server. Can not be used when ‘–long’ is specified.
This command is provided by the python-ironicclient plugin.
Set baremetal node to maintenance mode
openstack baremetal node maintenance set [--reason <reason>] <node>
Reason for setting maintenance mode.
Name or UUID of the node.
This command is provided by the python-ironicclient plugin.
Unset baremetal node from maintenance mode
openstack baremetal node maintenance unset <node>
Name or UUID of the node.
This command is provided by the python-ironicclient plugin.
Set provision state of baremetal node to ‘manage’
openstack baremetal node manage [--wait [<time-out>]] <node>
Wait for a node to reach the desired state, manageable. Optionally takes a timeout value (in seconds). The default value is 0, meaning it will wait indefinitely.
Name or UUID of the node.
This command is provided by the python-ironicclient plugin.
Call a vendor passthu method for a node
openstack baremetal node passthru call
[--arg <key=value>]
[--http-method <http-method>]
<node>
<method>
Argument to pass to the passthru method (repeat option to specify multiple arguments)
The HTTP method to use in the passthru request. One of DELETE, GET, PATCH, POST, PUT. Defaults to POST.
Name or UUID of the node
Vendor passthru method to be executed
This command is provided by the python-ironicclient plugin.
List vendor passthru methods for a node
openstack baremetal node passthru list
[--format-config-file FORMAT_CONFIG]
[--sort-column SORT_COLUMN]
[--sort-ascending | --sort-descending]
<node>
Config file for the dict-to-csv formatter
specify the column(s) to sort the data (columns specified first have a priority, non-existing columns are ignored), can be repeated
sort the column(s) in ascending order
sort the column(s) in descending order
Name or UUID of the node
This command is provided by the python-ironicclient plugin.
Power off a node
openstack baremetal node power off
[--power-timeout <power-timeout>]
[--soft]
<node>
Timeout (in seconds, positive integer) to wait for the target power state before erroring out.
Request graceful power-off.
Name or UUID of the node.
This command is provided by the python-ironicclient plugin.
Power on a node
openstack baremetal node power on
[--power-timeout <power-timeout>]
<node>
Timeout (in seconds, positive integer) to wait for the target power state before erroring out.
Name or UUID of the node.
This command is provided by the python-ironicclient plugin.
Set provision state of baremetal node to ‘provide’
openstack baremetal node provide [--wait [<time-out>]] <node>
Wait for a node to reach the desired state, available. Optionally takes a timeout value (in seconds). The default value is 0, meaning it will wait indefinitely.
Name or UUID of the node.
This command is provided by the python-ironicclient plugin.
Reboot baremetal node
openstack baremetal node reboot
[--soft]
[--power-timeout <power-timeout>]
<node>
Request Graceful reboot.
Timeout (in seconds, positive integer) to wait for the target power state before erroring out.
Name or UUID of the node.
This command is provided by the python-ironicclient plugin.
Set provision state of baremetal node to ‘rebuild’
openstack baremetal node rebuild
[--wait [<time-out>]]
[--config-drive <config-drive>]
[--deploy-steps <deploy-steps>]
<node>
Wait for a node to reach the desired state, active. Optionally takes a timeout value (in seconds). The default value is 0, meaning it will wait indefinitely.
A gzipped, base64-encoded configuration drive string OR the path to the configuration drive file OR the path to a directory containing the config drive files OR a JSON object to build config drive from. In case it’s a directory, a config drive will be generated from it. In case it’s a JSON object with optional keys meta_data, user_data and network_data, a config drive will be generated on the server side (see the bare metal API reference for more details).
The deploy steps in JSON format. May be the path to a file containing the deploy steps; OR ‘-’, with the deploy steps being read from standard input; OR a string. The value should be a list of deploy-step dictionaries; each dictionary should have keys ‘interface’, ‘step’, ‘priority’ and optional key ‘args’.
Name or UUID of the node.
This command is provided by the python-ironicclient plugin.
Remove trait(s) from a node.
openstack baremetal node remove trait [--all] <node> [<trait> ...]
Remove all traits
Name or UUID of the node
Trait(s) to remove
This command is provided by the python-ironicclient plugin.
Set provision state of baremetal node to ‘rescue’
openstack baremetal node rescue
[--wait [<time-out>]]
--rescue-password <rescue-password>
<node>
Wait for a node to reach the desired state, rescue. Optionally takes a timeout value (in seconds). The default value is 0, meaning it will wait indefinitely.
The password that will be used to login to the rescue ramdisk. The value should be a non-empty string.
Name or UUID of the node.
This command is provided by the python-ironicclient plugin.
Turn secure boot off
openstack baremetal node secure boot off <node>
Name or UUID of the node
This command is provided by the python-ironicclient plugin.
Turn secure boot on
openstack baremetal node secure boot on <node>
Name or UUID of the node
This command is provided by the python-ironicclient plugin.
Set baremetal properties
openstack baremetal node set
[--instance-uuid <uuid>]
[--name <name>]
[--chassis-uuid <chassis UUID>]
[--driver <driver>]
[--bios-interface <bios_interface> | --reset-bios-interface]
[--boot-interface <boot_interface> | --reset-boot-interface]
[--console-interface <console_interface> | --reset-console-interface]
[--deploy-interface <deploy_interface> | --reset-deploy-interface]
[--inspect-interface <inspect_interface> | --reset-inspect-interface]
[--management-interface <management_interface> | --reset-management-interface]
[--network-interface <network_interface> | --reset-network-interface]
[--network-data <network data>]
[--power-interface <power_interface> | --reset-power-interface]
[--raid-interface <raid_interface> | --reset-raid-interface]
[--rescue-interface <rescue_interface> | --reset-rescue-interface]
[--storage-interface <storage_interface> | --reset-storage-interface]
[--vendor-interface <vendor_interface> | --reset-vendor-interface]
[--reset-interfaces]
[--resource-class <resource_class>]
[--conductor-group <conductor_group>]
[--automated-clean | --no-automated-clean]
[--protected]
[--protected-reason <protected_reason>]
[--retired]
[--retired-reason <retired_reason>]
[--target-raid-config <target_raid_config>]
[--property <key=value>]
[--extra <key=value>]
[--driver-info <key=value>]
[--instance-info <key=value>]
[--owner <owner>]
[--lessee <lessee>]
[--description <description>]
<node>
Set instance UUID of node to <uuid>
Set the name of the node
Set the chassis for the node
Set the driver for the node
Set the BIOS interface for the node
Reset the BIOS interface to its hardware type default
Set the boot interface for the node
Reset the boot interface to its hardware type default
Set the console interface for the node
Reset the console interface to its hardware type default
Set the deploy interface for the node
Reset the deploy interface to its hardware type default
Set the inspect interface for the node
Reset the inspect interface to its hardware type default
Set the management interface for the node
Reset the management interface to its hardware type default
Set the network interface for the node
Reset the network interface to its hardware type default
JSON string or a YAML file or ‘-’ for stdin to read static network configuration for the baremetal node associated with this ironic node. Format of this file should comply with Nova network data metadata (network_data.json). Depending on ironic boot interface capabilities being used, network configuration may or may not been served to the node for offline network configuration.
Set the power interface for the node
Reset the power interface to its hardware type default
Set the RAID interface for the node
Reset the RAID interface to its hardware type default
Set the rescue interface for the node
Reset the rescue interface to its hardware type default
Set the storage interface for the node
Reset the storage interface to its hardware type default
Set the vendor interface for the node
Reset the vendor interface to its hardware type default
Reset all interfaces not specified explicitly to their default implementations. Only valid with –driver.
Set the resource class for the node
Set the conductor group for the node
Enable automated cleaning for the node
Explicitly disable automated cleaning for the node
Mark the node as protected
Set the reason of marking the node as protected
Mark the node as retired
Set the reason of marking the node as retired
Set the target RAID configuration (JSON) for the node. This can be one of: 1. a file containing YAML data of the RAID configuration; 2. “-” to read the contents from standard input; or 3. a valid JSON string.
Property to set on this baremetal node (repeat option to set multiple properties)
Extra to set on this baremetal node (repeat option to set multiple extras)
Driver information to set on this baremetal node (repeat option to set multiple driver infos)
Instance information to set on this baremetal node (repeat option to set multiple instance infos)
Set the owner for the node
Set the lessee for the node
Set the description for the node
Name or UUID of the node.
This command is provided by the python-ironicclient plugin.
Show baremetal node details
openstack baremetal node show
[--instance]
[--fields <field> [<field> ...]]
<node>
<node> is an instance UUID.
One or more node fields. Only these fields will be fetched from the server.
Name or UUID of the node (or instance UUID if –instance is specified)
This command is provided by the python-ironicclient plugin.
List a node’s traits.
openstack baremetal node trait list
[--format-config-file FORMAT_CONFIG]
[--sort-column SORT_COLUMN]
[--sort-ascending | --sort-descending]
<node>
Config file for the dict-to-csv formatter
specify the column(s) to sort the data (columns specified first have a priority, non-existing columns are ignored), can be repeated
sort the column(s) in ascending order
sort the column(s) in descending order
Name or UUID of the node
This command is provided by the python-ironicclient plugin.
Set provision state of baremetal node to ‘deleted’
openstack baremetal node undeploy [--wait [<time-out>]] <node>
Wait for a node to reach the desired state, available. Optionally takes a timeout value (in seconds). The default value is 0, meaning it will wait indefinitely.
Name or UUID of the node.
This command is provided by the python-ironicclient plugin.
Set provision state of baremetal node to ‘unrescue’
openstack baremetal node unrescue [--wait [<time-out>]] <node>
Wait for a node to reach the desired state, active. Optionally takes a timeout value (in seconds). The default value is 0, meaning it will wait indefinitely.
Name or UUID of the node.
This command is provided by the python-ironicclient plugin.
Unset baremetal properties
openstack baremetal node unset
[--instance-uuid]
[--name]
[--resource-class]
[--target-raid-config]
[--property <key>]
[--extra <key>]
[--driver-info <key>]
[--instance-info <key>]
[--chassis-uuid]
[--bios-interface]
[--boot-interface]
[--console-interface]
[--deploy-interface]
[--inspect-interface]
[--network-data]
[--management-interface]
[--network-interface]
[--power-interface]
[--raid-interface]
[--rescue-interface]
[--storage-interface]
[--vendor-interface]
[--conductor-group]
[--automated-clean]
[--protected]
[--protected-reason]
[--retired]
[--retired-reason]
[--owner]
[--lessee]
[--description]
<node>
Unset instance UUID on this baremetal node
Unset the name of the node
Unset the resource class of the node
Unset the target RAID configuration of the node
Property to unset on this baremetal node (repeat option to unset multiple properties)
Extra to unset on this baremetal node (repeat option to unset multiple extras)
Driver information to unset on this baremetal node (repeat option to unset multiple driver informations)
Instance information to unset on this baremetal node (repeat option to unset multiple instance informations)
Unset chassis UUID on this baremetal node
Unset BIOS interface on this baremetal node
Unset boot interface on this baremetal node
Unset console interface on this baremetal node
Unset deploy interface on this baremetal node
Unset inspect interface on this baremetal node
Unset network data on this baremetal port.
Unset management interface on this baremetal node
Unset network interface on this baremetal node
Unset power interface on this baremetal node
Unset RAID interface on this baremetal node
Unset rescue interface on this baremetal node
Unset storage interface on this baremetal node
Unset vendor interface on this baremetal node
Unset conductor group for this baremetal node (the default group will be used)
Unset automated clean option on this baremetal node (the value from configuration will be used)
Unset the protected flag on the node
Unset the protected reason (gets unset automatically when protected is unset)
Unset the retired flag on the node
Unset the retired reason (gets unset automatically when retired is unset)
Unset the owner field of the node
Unset the lessee field of the node
Unset the description field of the node
Name or UUID of the node.
This command is provided by the python-ironicclient plugin.
Validate a node’s driver interfaces
openstack baremetal node validate
[--format-config-file FORMAT_CONFIG]
[--sort-column SORT_COLUMN]
[--sort-ascending | --sort-descending]
<node>
Config file for the dict-to-csv formatter
specify the column(s) to sort the data (columns specified first have a priority, non-existing columns are ignored), can be repeated
sort the column(s) in ascending order
sort the column(s) in descending order
Name or UUID of the node
This command is provided by the python-ironicclient plugin.
Attach VIF to a given node
openstack baremetal node vif attach
[--port-uuid <port-uuid>]
[--vif-info <key=value>]
<node>
<vif-id>
UUID of the baremetal port to attach the VIF to.
Record arbitrary key/value metadata. Can be specified multiple times. The mandatory ‘id’ parameter cannot be specified as a key.
Name or UUID of the node
Name or UUID of the VIF to attach to a node.
This command is provided by the python-ironicclient plugin.
Detach VIF from a given node
openstack baremetal node vif detach <node> <vif-id>
Name or UUID of the node
Name or UUID of the VIF to detach from a node.
This command is provided by the python-ironicclient plugin.
Show attached VIFs for a node
openstack baremetal node vif list
[--format-config-file FORMAT_CONFIG]
[--sort-column SORT_COLUMN]
[--sort-ascending | --sort-descending]
<node>
Config file for the dict-to-csv formatter
specify the column(s) to sort the data (columns specified first have a priority, non-existing columns are ignored), can be repeated
sort the column(s) in ascending order
sort the column(s) in descending order
Name or UUID of the node
This command is provided by the python-ironicclient plugin.
Create a new port
openstack baremetal port create
--node <uuid>
[--uuid <uuid>]
[--extra <key=value>]
[--local-link-connection <key=value>]
[-l <key=value>]
[--pxe-enabled <boolean>]
[--port-group <uuid>]
[--physical-network <physical network>]
[--is-smartnic]
<address>
UUID of the node that this port belongs to.
UUID of the port.
Record arbitrary key/value metadata. Argument can be specified multiple times.
Key/value metadata describing Local link connection information. Valid keys are ‘switch_info’, ‘switch_id’, ‘port_id’ and ‘hostname’. The keys ‘switch_id’ and ‘port_id’ are required. In case of a Smart NIC port, the required keys are ‘port_id’ and ‘hostname’. Argument can be specified multiple times.
DEPRECATED. Please use –local-link-connection instead. Key/value metadata describing Local link connection information. Valid keys are ‘switch_info’, ‘switch_id’, and ‘port_id’. The keys ‘switch_id’ and ‘port_id’ are required. Can be specified multiple times.
Indicates whether this Port should be used when PXE booting this Node.
UUID of the port group that this port belongs to.
Name of the physical network to which this port is connected.
Indicates whether this Port is a Smart NIC port
MAC address for this port.
This command is provided by the python-ironicclient plugin.
Delete port(s).
openstack baremetal port delete <port> [<port> ...]
UUID(s) of the port(s) to delete.
This command is provided by the python-ironicclient plugin.
Create a new baremetal port group.
openstack baremetal port group create
--node <uuid>
[--address <mac-address>]
[--name NAME]
[--uuid UUID]
[--extra <key=value>]
[--mode MODE]
[--property <key=value>]
[--support-standalone-ports | --unsupport-standalone-ports]
UUID of the node that this port group belongs to.
MAC address for this port group.
Name of the port group.
UUID of the port group.
Record arbitrary key/value metadata. Can be specified multiple times.
Mode of the port group. For possible values, refer to https://www.kernel.org/doc/Documentation/networking/bonding.txt.
Key/value property related to this port group’s configuration. Can be specified multiple times.
Ports that are members of this port group can be used as stand-alone ports. (default)
Ports that are members of this port group cannot be used as stand-alone ports.
This command is provided by the python-ironicclient plugin.
Unregister baremetal port group(s).
openstack baremetal port group delete <port group> [<port group> ...]
Port group(s) to delete (name or UUID).
This command is provided by the python-ironicclient plugin.
List baremetal port groups.
openstack baremetal port group list
[--format-config-file FORMAT_CONFIG]
[--sort-column SORT_COLUMN]
[--sort-ascending | --sort-descending]
[--limit <limit>]
[--marker <port group>]
[--sort <key>[:<direction>]]
[--address <mac-address>]
[--node <node>]
[--long | --fields <field> [<field> ...]]
Config file for the dict-to-csv formatter
specify the column(s) to sort the data (columns specified first have a priority, non-existing columns are ignored), can be repeated
sort the column(s) in ascending order
sort the column(s) in descending order
Maximum number of port groups to return per request, 0 for no limit. Default is the maximum number used by the Baremetal API Service.
Port group UUID (for example, of the last port group in the list from a previous request). Returns the list of port groups after this UUID.
Sort output by specified port group fields and directions (asc or desc) (default: asc). Multiple fields and directions can be specified, separated by comma.
Only show information for the port group with this MAC address.
Only list port groups of this node (name or UUID).
Show detailed information about the port groups.
One or more port group fields. Only these fields will be fetched from the server. Can not be used when ‘–long’ is specified.
This command is provided by the python-ironicclient plugin.
Set baremetal port group properties.
openstack baremetal port group set
[--node <uuid>]
[--address <mac-address>]
[--name <name>]
[--extra <key=value>]
[--mode MODE]
[--property <key=value>]
[--support-standalone-ports | --unsupport-standalone-ports]
<port
group>
Update UUID of the node that this port group belongs to.
MAC address for this port group.
Name of the port group.
Extra to set on this baremetal port group (repeat option to set multiple extras).
Mode of the port group. For possible values, refer to https://www.kernel.org/doc/Documentation/networking/bonding.txt.
Key/value property related to this port group’s configuration (repeat option to set multiple properties).
Ports that are members of this port group can be used as stand-alone ports.
Ports that are members of this port group cannot be used as stand-alone ports.
Name or UUID of the port group.
This command is provided by the python-ironicclient plugin.
Show baremetal port group details.
openstack baremetal port group show
[--address]
[--fields <field> [<field> ...]]
<id>
<id> is the MAC address (instead of UUID or name) of the port group.
One or more port group fields. Only these fields will be fetched from the server.
UUID or name of the port group (or MAC address if –address is specified).
This command is provided by the python-ironicclient plugin.
Unset baremetal port group properties.
openstack baremetal port group unset
[--name]
[--address]
[--extra <key>]
[--property <key>]
<port
group>
Unset the name of the port group.
Unset the address of the port group.
Extra to unset on this baremetal port group (repeat option to unset multiple extras).
Property to unset on this baremetal port group (repeat option to unset multiple properties).
Name or UUID of the port group.
This command is provided by the python-ironicclient plugin.
List baremetal ports.
openstack baremetal port list
[--format-config-file FORMAT_CONFIG]
[--sort-column SORT_COLUMN]
[--sort-ascending | --sort-descending]
[--address <mac-address>]
[--node <node>]
[--port-group <port group>]
[--limit <limit>]
[--marker <port>]
[--sort <key>[:<direction>]]
[--long | --fields <field> [<field> ...]]
Config file for the dict-to-csv formatter
specify the column(s) to sort the data (columns specified first have a priority, non-existing columns are ignored), can be repeated
sort the column(s) in ascending order
sort the column(s) in descending order
Only show information for the port with this MAC address.
Only list ports of this node (name or UUID).
Only list ports of this port group (name or UUID).
Maximum number of ports to return per request, 0 for no limit. Default is the maximum number used by the Baremetal API Service.
Port UUID (for example, of the last port in the list from a previous request). Returns the list of ports after this UUID.
Sort output by specified port fields and directions (asc or desc) (default: asc). Multiple fields and directions can be specified, separated by comma.
Show detailed information about ports.
One or more port fields. Only these fields will be fetched from the server. Can not be used when ‘–long’ is specified.
This command is provided by the python-ironicclient plugin.
Set baremetal port properties.
openstack baremetal port set
[--node <uuid>]
[--address <address>]
[--extra <key=value>]
[--port-group <uuid>]
[--local-link-connection <key=value>]
[--pxe-enabled | --pxe-disabled]
[--physical-network <physical network>]
[--is-smartnic]
<port>
Set UUID of the node that this port belongs to
Set MAC address for this port
Extra to set on this baremetal port (repeat option to set multiple extras)
Set UUID of the port group that this port belongs to.
Key/value metadata describing local link connection information. Valid keys are ‘switch_info’, ‘switch_id’, ‘port_id’ and ‘hostname’. The keys ‘switch_id’ and ‘port_id’ are required. In case of a Smart NIC port, the required keys are ‘port_id’ and ‘hostname’. Argument can be specified multiple times.
Indicates that this port should be used when PXE booting this node (default)
Indicates that this port should not be used when PXE booting this node
Set the name of the physical network to which this port is connected.
Set port to be Smart NIC port
UUID of the port
This command is provided by the python-ironicclient plugin.
Show baremetal port details.
openstack baremetal port show
[--address]
[--fields <field> [<field> ...]]
<id>
<id> is the MAC address (instead of the UUID) of the port.
One or more port fields. Only these fields will be fetched from the server.
UUID of the port (or MAC address if –address is specified).
This command is provided by the python-ironicclient plugin.
Unset baremetal port properties.
openstack baremetal port unset
[--extra <key>]
[--port-group]
[--physical-network]
[--is-smartnic]
<port>
Extra to unset on this baremetal port (repeat option to unset multiple extras)
Remove port from the port group
Unset the physical network on this baremetal port.
Set Port as not Smart NIC port
UUID of the port.
This command is provided by the python-ironicclient plugin.
Create a new baremetal volume connector.
openstack baremetal volume connector create
--node <uuid>
--type <type>
--connector-id <connector
id>
[--uuid <uuid>]
[--extra <key=value>]
UUID of the node that this volume connector belongs to.
Type of the volume connector. Can be ‘iqn’, ‘ip’, ‘mac’, ‘wwnn’, ‘wwpn’, ‘port’, ‘portgroup’.
ID of the volume connector in the specified type. For example, the iSCSI initiator IQN for the node if the type is ‘iqn’.
UUID of the volume connector.
Record arbitrary key/value metadata. Can be specified multiple times.
This command is provided by the python-ironicclient plugin.
Unregister baremetal volume connector(s).
openstack baremetal volume connector delete
<volume
connector>
[<volume connector> ...]
UUID(s) of the volume connector(s) to delete.
This command is provided by the python-ironicclient plugin.
List baremetal volume connectors.
openstack baremetal volume connector list
[--format-config-file FORMAT_CONFIG]
[--sort-column SORT_COLUMN]
[--sort-ascending | --sort-descending]
[--node <node>]
[--limit <limit>]
[--marker <volume connector>]
[--sort <key>[:<direction>]]
[--long | --fields <field> [<field> ...]]
Config file for the dict-to-csv formatter
specify the column(s) to sort the data (columns specified first have a priority, non-existing columns are ignored), can be repeated
sort the column(s) in ascending order
sort the column(s) in descending order
Only list volume connectors of this node (name or UUID).
Maximum number of volume connectors to return per request, 0 for no limit. Default is the maximum number used by the Baremetal API Service.
Volume connector UUID (for example, of the last volume connector in the list from a previous request). Returns the list of volume connectors after this UUID.
Sort output by specified volume connector fields and directions (asc or desc) (default:asc). Multiple fields and directions can be specified, separated by comma.
Show detailed information about volume connectors.
One or more volume connector fields. Only these fields will be fetched from the server. Can not be used when ‘–long’ is specified.
This command is provided by the python-ironicclient plugin.
Set baremetal volume connector properties.
openstack baremetal volume connector set
[--node <uuid>]
[--type <type>]
[--connector-id <connector id>]
[--extra <key=value>]
<volume
connector>
UUID of the node that this volume connector belongs to.
Type of the volume connector. Can be ‘iqn’, ‘ip’, ‘mac’, ‘wwnn’, ‘wwpn’, ‘port’, ‘portgroup’.
ID of the volume connector in the specified type.
Record arbitrary key/value metadata. Can be specified multiple times.
UUID of the volume connector.
This command is provided by the python-ironicclient plugin.
Show baremetal volume connector details.
openstack baremetal volume connector show
[--fields <field> [<field> ...]]
<id>
One or more volume connector fields. Only these fields will be fetched from the server.
UUID of the volume connector.
This command is provided by the python-ironicclient plugin.
Unset baremetal volume connector properties.
openstack baremetal volume connector unset
[--extra <key>]
<volume
connector>
Extra to unset (repeat option to unset multiple extras)
UUID of the volume connector.
This command is provided by the python-ironicclient plugin.
Create a new baremetal volume target.
openstack baremetal volume target create
--node <uuid>
--type <volume
type>
[--property <key=value>]
--boot-index <boot
index>
--volume-id <volume
id>
[--uuid <uuid>]
[--extra <key=value>]
UUID of the node that this volume target belongs to.
Type of the volume target, e.g. ‘iscsi’, ‘fibre_channel’.
Key/value property related to the type of this volume target. Can be specified multiple times.
Boot index of the volume target.
ID of the volume associated with this target.
UUID of the volume target.
Record arbitrary key/value metadata. Can be specified multiple times.
This command is provided by the python-ironicclient plugin.
Unregister baremetal volume target(s).
openstack baremetal volume target delete
<volume
target>
[<volume target> ...]
UUID(s) of the volume target(s) to delete.
This command is provided by the python-ironicclient plugin.
List baremetal volume targets.
openstack baremetal volume target list
[--format-config-file FORMAT_CONFIG]
[--sort-column SORT_COLUMN]
[--sort-ascending | --sort-descending]
[--node <node>]
[--limit <limit>]
[--marker <volume target>]
[--sort <key>[:<direction>]]
[--long | --fields <field> [<field> ...]]
Config file for the dict-to-csv formatter
specify the column(s) to sort the data (columns specified first have a priority, non-existing columns are ignored), can be repeated
sort the column(s) in ascending order
sort the column(s) in descending order
Only list volume targets of this node (name or UUID).
Maximum number of volume targets to return per request, 0 for no limit. Default is the maximum number used by the Baremetal API Service.
Volume target UUID (for example, of the last volume target in the list from a previous request). Returns the list of volume targets after this UUID.
Sort output by specified volume target fields and directions (asc or desc) (default:asc). Multiple fields and directions can be specified, separated by comma.
Show detailed information about volume targets.
One or more volume target fields. Only these fields will be fetched from the server. Can not be used when ‘–long’ is specified.
This command is provided by the python-ironicclient plugin.
Set baremetal volume target properties.
openstack baremetal volume target set
[--node <uuid>]
[--type <volume type>]
[--property <key=value>]
[--boot-index <boot index>]
[--volume-id <volume id>]
[--extra <key=value>]
<volume
target>
UUID of the node that this volume target belongs to.
Type of the volume target, e.g. ‘iscsi’, ‘fibre_channel’.
Key/value property related to the type of this volume target. Can be specified multiple times.
Boot index of the volume target.
ID of the volume associated with this target.
Record arbitrary key/value metadata. Can be specified multiple times.
UUID of the volume target.
This command is provided by the python-ironicclient plugin.
Show baremetal volume target details.
openstack baremetal volume target show
[--fields <field> [<field> ...]]
<id>
One or more volume target fields. Only these fields will be fetched from the server.
UUID of the volume target.
This command is provided by the python-ironicclient plugin.
Unset baremetal volume target properties.
openstack baremetal volume target unset
[--extra <key>]
[--property <key>]
<volume
target>
Extra to unset (repeat option to unset multiple extras)
Property to unset on this baremetal volume target (repeat option to unset multiple properties).
UUID of the volume target.
This command is provided by the python-ironicclient plugin.
Except where otherwise noted, this document is licensed under Creative Commons Attribution 3.0 License. See all OpenStack Legal Documents.