summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2021-06-28 09:44:02 +0000
committerGerrit Code Review <review@openstack.org>2021-06-28 09:44:02 +0000
commitb3410c664f3e8b427f552356c82a40e1f3dae87b (patch)
treed797ab422461b905b9d56e929587bc07fc662fce
parent0bbbba77c28549b7d24bf97ce7764409e7585c99 (diff)
parent7628d46e18e102e5156d6a2ef1e3be1858799efa (diff)
downloadironic-b3410c664f3e8b427f552356c82a40e1f3dae87b.tar.gz
Merge "dhcp-less: mention how to provide network_data to instance" into bugfix/18.0
-rw-r--r--doc/source/admin/dhcp-less.rst19
1 files changed, 19 insertions, 0 deletions
diff --git a/doc/source/admin/dhcp-less.rst b/doc/source/admin/dhcp-less.rst
index 64093dfa7..089829e25 100644
--- a/doc/source/admin/dhcp-less.rst
+++ b/doc/source/admin/dhcp-less.rst
@@ -81,10 +81,29 @@ An example network data:
Some fields are redundant with the port information. We're looking into
simplifying the format, but currently all these fields are mandatory.
+You'll need the deployed image to support network data, e.g. by pre-installing
+cloud-init_ or Glean_ on it (most cloud images have the former). Then you can
+provide the network data when deploying, for example:
+
+.. code-block:: bash
+
+ baremetal node deploy <node> \
+ --config-drive "{\"network_data\": $(cat ~/network_data.json)}"
+
+Some first-boot services, such as Ignition_, don't support network data. You
+can provide their configuration as part of user data instead:
+
+.. code-block:: bash
+
+ baremetal node deploy <node> \
+ --config-drive "{\"user_data\": \"... ignition config ...\"}"
+
.. _configdrive: https://docs.openstack.org/nova/queens/user/config-drive.html
.. _Glean: https://docs.openstack.org/infra/glean/
.. _simple-init: https://docs.openstack.org/diskimage-builder/latest/elements/simple-init/README.html
.. _network_data: https://specs.openstack.org/openstack/nova-specs/specs/liberty/implemented/metadata-service-network-info.html
+.. _cloud-init: https://cloudinit.readthedocs.io/en/latest/
+.. _Ignition: https://coreos.github.io/ignition/
.. _l3-external-ip: