From 80cdb9abd78f17b5143af6e05c0854264ac0508e Mon Sep 17 00:00:00 2001 From: Dmitry Tantsur Date: Thu, 5 Mar 2020 15:53:15 +0100 Subject: [PATCH] Document deploy_boot_mode and boot_option for standalone deployments Change-Id: Iad04779cc8c782b20d6636dd2bbb602bc89255b2 --- doc/source/install/standalone.rst | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/doc/source/install/standalone.rst b/doc/source/install/standalone.rst index 3eca6492f2..c1349d4682 100644 --- a/doc/source/install/standalone.rst +++ b/doc/source/install/standalone.rst @@ -159,6 +159,28 @@ Steps to start a deployment are pretty similar to those when using Compute: --instance-info image_source=$IMG \ --instance-info image_checksum=$MD5HASH +#. :ref:`Boot mode ` can be specified per instance:: + + openstack baremetal node set $NODE_UUID \ + --instance-info deploy_boot_mode=uefi + + Otherwise, the ``boot_mode`` capability from the node's ``properties`` will + be used. + + .. warning:: + The two settings must not contradict each other. + + .. note:: + The ``boot_mode`` capability is only used in the node's ``properties``, + not in ``instance_info`` like most other capabilities. Use the separate + ``instance_info/deploy_boot_mode`` field instead. + +#. To override the :ref:`boot option ` used for + this instance, set the ``boot_option`` capability:: + + openstack baremetal node set $NODE_UUID \ + --instance-info capabilities='{"boot_option": "local"}' + #. Starting with the Ussuri release, you can set :ref:`root device hints ` per instance::