From a06687e39b92d180af446b0bc6f9c0053c6f9911 Mon Sep 17 00:00:00 2001 From: ANURADHAJHA99 Date: Wed, 7 Oct 2020 23:33:55 +0530 Subject: [PATCH] Replaced openstack baremetal to baremetal in the documentation Changed osc_plugin_cli.html to index.html Story: #2008194 Task: #40963 Change-Id: I1ef1a72b5d2b461939a76448177f0d827df585b2 --- CONTRIBUTING.rst | 12 ++++++------ doc/source/user/usage.rst | 10 +++++----- doc/source/user/workflow.rst | 2 +- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 6d2b7a52d..e6ea8ce8f 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -143,15 +143,15 @@ To exit screen, hit ``CTRL-a d``. List baremetal nodes:: - openstack baremetal node list + baremetal node list Bring the node to manageable state:: - openstack baremetal node manage + baremetal node manage Inspect the node:: - openstack baremetal node inspect + baremetal node inspect .. note:: The deploy driver used must support the inspect interface. See also the @@ -161,15 +161,15 @@ Inspect the node:: A node can also be inspected using the following command. However, this will not affect the provision state of the node:: - openstack baremetal introspection start + baremetal introspection start Check inspection status:: - openstack baremetal introspection status + baremetal introspection status Optionally, get the inspection data:: - openstack baremetal introspection data save + baremetal introspection data save Writing a Plugin diff --git a/doc/source/user/usage.rst b/doc/source/user/usage.rst index 5f820473b..3e35db22f 100644 --- a/doc/source/user/usage.rst +++ b/doc/source/user/usage.rst @@ -26,16 +26,16 @@ Node States * The nodes should be moved to ``MANAGEABLE`` provision state before introspection (requires *python-ironicclient* of version 0.5.0 or newer):: - openstack baremetal node manage + baremetal node manage * The introspection can be triggered by using the following command:: - openstack baremetal node inspect + baremetal node inspect * After successful introspection and before deploying nodes should be made available to Nova, by moving them to ``AVAILABLE`` state:: - openstack baremetal node provide + baremetal node provide .. note:: Due to how Nova interacts with Ironic driver, you should wait 1 minute @@ -56,7 +56,7 @@ evaluate to true on the introspection data, then actions are run on a node. Please refer to the command below to import introspection rule:: - openstack baremetal introspection rule import + baremetal introspection rule import Available conditions and actions are defined by plugins, and can be extended, see :ref:`contributing_link` for details. See the `API reference`_ for @@ -124,7 +124,7 @@ rule include field ``"scope"`` in JSON file before importing. For example:: Set the property ``inspection_scope`` on the node you want the rule to be applied to:: - openstack baremetal node set --property inspection_scope="SCOPE" + baremetal node set --property inspection_scope="SCOPE" Now, when inspecting, the rule will be applied only to nodes with matching scope value. It will also ignore nodes that do not have ``inspection_scope`` diff --git a/doc/source/user/workflow.rst b/doc/source/user/workflow.rst index a950b8298..b3b7444cd 100644 --- a/doc/source/user/workflow.rst +++ b/doc/source/user/workflow.rst @@ -7,7 +7,7 @@ Workflow Usual hardware introspection flow is as follows: * Operator enrolls nodes into Ironic_ e.g. via - :python-ironicclient-doc:`openstack baremetal CLI ` + :python-ironicclient-doc:`baremetal CLI ` command. Power management credentials should be provided to Ironic at this step.