Merge "Update .rst files"

This commit is contained in:
Zuul 2020-11-18 00:20:52 +00:00 committed by Gerrit Code Review
commit 169e45809b
4 changed files with 18 additions and 18 deletions

View File

@ -384,7 +384,7 @@ The following command can be used to create a RAID configuration:
.. code-block:: bash
baremetal node clean --clean-steps \
'[{"interface": "raid", "step": "create_configuration"}]' ${node_uuid}
'[{"interface": "raid", "step": "create_configuration"}]' <node>
When the physical disk names or controller names are not known, the
@ -459,7 +459,7 @@ Get BIOS Config
.. code-block:: bash
baremetal node passthru call --http-method GET ${node_uuid} get_bios_config
baremetal node passthru call --http-method GET <node> get_bios_config
Snippet of output showing virtualization enabled:
@ -491,7 +491,7 @@ Set BIOS Config
.. code-block:: bash
baremetal node passthru call ${node_uuid} set_bios_config --arg "name=value"
baremetal node passthru call <node> set_bios_config --arg "name=value"
Walkthrough of perfoming a BIOS configuration change:
@ -505,7 +505,7 @@ two properties that are being changed are:
.. code-block:: bash
baremetal node passthru call ${node_uuid} set_bios_config \
baremetal node passthru call <node> set_bios_config \
--arg "ProcVirtualization=Enabled" \
--arg "SriovGlobalEnable=Enabled"
@ -532,7 +532,7 @@ Ironic power API.
.. code-block:: bash
baremetal node passthru call ${node_uuid} commit_bios_config \
baremetal node passthru call <node> commit_bios_config \
--arg "reboot=true"
.. code-block:: json
@ -546,7 +546,7 @@ The state of any executing job can be queried:
.. code-block:: bash
baremetal node passthru call --http-method GET ${node_uuid} list_unfinished_jobs
baremetal node passthru call --http-method GET <node> list_unfinished_jobs
.. code-block:: json
@ -568,7 +568,7 @@ Instead of committing, a pending change can be abandoned:
.. code-block:: bash
baremetal node passthru call --http-method DELETE ${node_uuid} abandon_bios_config
baremetal node passthru call --http-method DELETE <node> abandon_bios_config
The abandon command does not provide a response body.
@ -609,18 +609,18 @@ The boot mode can be changed via the vendor passthru interface as follows:
.. code-block:: bash
baremetal node passthru call ${node_uuid} set_bios_config \
baremetal node passthru call <node> set_bios_config \
--arg "BootMode=Uefi"
baremetal node passthru call ${node_uuid} commit_bios_config \
baremetal node passthru call <node> commit_bios_config \
--arg "reboot=true"
.. code-block:: bash
baremetal node passthru call ${node_uuid} set_bios_config \
baremetal node passthru call <node> set_bios_config \
--arg "BootMode=Bios"
baremetal node passthru call ${node_uuid} commit_bios_config \
baremetal node passthru call <node> commit_bios_config \
--arg "reboot=true"
Known Issues

View File

@ -103,7 +103,7 @@ To check what deploy step the node is performing or attempted to perform and
failed, run the following command; it will return the value in the node's
``driver_internal_info`` field::
baremetal node show $node_ident -f value -c driver_internal_info
baremetal node show <node> -f value -c driver_internal_info
The ``deploy_steps`` field will contain a list of all remaining steps with
their priorities, and the first one listed is the step currently in progress or
@ -261,11 +261,11 @@ Example of use with the Compute service
.. note:: The deploy steps used in this example are for example purposes only.
In the following example, we first add the trait ``CUSTOM_HYPERTHREADING_ON``
to the node represented by ``$node_ident``:
to the node represented by ``<node>``:
.. code-block:: console
baremetal node add trait $node_ident CUSTOM_HYPERTHREADING_ON
baremetal node add trait <node> CUSTOM_HYPERTHREADING_ON
We also update the flavor ``bm-hyperthreading-on`` in the Compute
service with the following property:
@ -311,7 +311,7 @@ To make this example more dynamic, let's add a second trait
.. code-block:: console
baremetal node add trait $node_ident CUSTOM_HYPERTHREADING_OFF
baremetal node add trait <node> CUSTOM_HYPERTHREADING_OFF
We could also update a second flavor, ``bm-hyperthreading-off``, with the
following property:

View File

@ -93,7 +93,7 @@ set new values for some or all interfaces:
export OS_BAREMETAL_API_VERSION=1.31
for uuid in $(baremetal node list --driver pxe_ipmitool -f value -c UUID); do
baremetal node set $uuid --driver ipmi --deploy-interface iscsi
baremetal node set <node> --driver ipmi --deploy-interface iscsi
done
for uuid in $(baremetal node list --driver agent_ipmitool -f value -c UUID); do

View File

@ -66,7 +66,7 @@ with tagging some nodes with it:
.. code-block:: console
$ baremetal node set $NODE_UUID --resource-class baremetal.with-GPU
$ baremetal node set <node> --resource-class baremetal.with-GPU
.. warning::
It is possible to **add** a resource class to ``active`` nodes, but it is
@ -118,7 +118,7 @@ To add the standard trait ``HW_CPU_X86_VMX`` and a custom trait
.. code-block:: console
$ baremetal node add trait $NODE_UUID CUSTOM_TRAIT1 HW_CPU_X86_VMX
$ baremetal node add trait <node> CUSTOM_TRAIT1 HW_CPU_X86_VMX
Then, update the flavor to require these traits: