Files
tripleo-docs/deploy-guide/source/provisioning/introspect_single_node.rst
Alex Schultz c6918e5da6 Migrate install to deploy-guide
The deployment guide is currently pointed at triplo-docs but it has been
requested that we actually publish a deployment guide. This change
extracts many of the installation doc pages and moves them into the
deploy-guide source tree.  Once the deploy-guide is published, we will
follow up to reference the deployment guide from tripleo-docs.

Change-Id: I0ebd26f014180a92c6cf4ab0929d99b2d860796f
2019-08-16 15:42:17 -06:00

1.1 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 openstack 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):

openstack baremetal node manage <UUID>

Then you can run introspection:

openstack baremetal introspection start UUID

This command won't poll for the introspection result, use the following command to check the current introspection state:

openstack 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:

openstack baremetal node provide <UUID>