The standalone baremetal cli was introduced in Ussuri as a direct replacement for "openstack baremetal" commands, which have since been removed from openstackclient. This change updates all "openstack baremetal" calls to "baremetal" calls without regard for the overall correctness of the documentation, but at least it is calling a command which actually exists. Change-Id: I85fa3a5dddc5e0815a9650019504336e7feccf81
1.0 KiB
Introspecting a Single Node
In addition to bulk introspection, you can also introspect nodes one
by one. When doing so, you must take care to set the correct node states
manually. Use baremetal node show UUID
command to figure
out whether nodes are in manageable
or
available
state. For all nodes in available
state, start with putting a node to manageable
state (see
node_states
for
details):
baremetal node manage <UUID>
Then you can run introspection:
baremetal introspection start UUID
This command won't poll for the introspection result, use the following command to check the current introspection state:
baremetal introspection status UUID
Repeat it for every node until you see True
in the
finished
field. The error
field will contain
an error message if introspection failed, or None
if
introspection succeeded for this node.
Do not forget to make nodes available for deployment afterwards:
baremetal node provide <UUID>