summaryrefslogtreecommitdiff
path: root/doc/source/install/enrollment.rst
diff options
context:
space:
mode:
authorDmitry Tantsur <dtantsur@protonmail.com>2023-03-23 15:45:31 +0100
committerDmitry Tantsur <dtantsur@protonmail.com>2023-03-28 11:53:26 +0200
commit3e21560bf70e5e6b529d9a2d37a2897461076395 (patch)
tree02d08b636515d34ce6a115cb3d01e3cc21bdd5e2 /doc/source/install/enrollment.rst
parentb201e52f8904a5d3d546ea58e6e384d81c3ae066 (diff)
downloadironic-3e21560bf70e5e6b529d9a2d37a2897461076395.tar.gz
Remove all references to the "cpus" property
Unused by Nova and unlike memory_mb/local_gb also by Ironic (actually, our usage of local_gb is worth double-checking as well, but at the very least it's referenced by inspection implementations). Change-Id: Ie8b0d9f58f4dcd102c183c30ae7f5acf68a5e4c3
Diffstat (limited to 'doc/source/install/enrollment.rst')
-rw-r--r--doc/source/install/enrollment.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/source/install/enrollment.rst b/doc/source/install/enrollment.rst
index 9f9355d75..2a4f23a9a 100644
--- a/doc/source/install/enrollment.rst
+++ b/doc/source/install/enrollment.rst
@@ -292,12 +292,13 @@ Adding scheduling information
This is not required for standalone deployments, only for those using
the Compute service for provisioning bare metal instances.
-#. Update the node's properties to match the actual hardware of the node:
+#. Update the node's properties to match the actual hardware of the node.
+ These are optional. When provided, ``memory_mb`` can be used for checking
+ if the instance image fits into the node's memory:
.. code-block:: console
$ baremetal node set $NODE_UUID \
- --property cpus=$CPU_COUNT \
--property memory_mb=$RAM_MB \
--property local_gb=$DISK_GB
@@ -310,14 +311,13 @@ Adding scheduling information
--driver-info ipmi_username=$USER \
--driver-info ipmi_password=$PASS \
--driver-info ipmi_address=$ADDRESS \
- --property cpus=$CPU_COUNT \
--property memory_mb=$RAM_MB \
--property local_gb=$DISK_GB
These values can also be discovered during `Hardware Inspection`_.
- .. warning::
- The value provided for the ``local_gb`` property must match the size of
+ .. note::
+ The value provided for the ``local_gb`` property should match the size of
the root device you're going to deploy on. By default
**ironic-python-agent** picks the smallest disk which is not smaller
than 4 GiB.