summaryrefslogtreecommitdiff
path: root/doc/source/admin
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2021-03-08 03:19:40 +0000
committerGerrit Code Review <review@openstack.org>2021-03-08 03:19:40 +0000
commit42df92e7dd127e6a7308a4f7a498b055092203b4 (patch)
tree185a7410b381fd5b6d785d984c506886802168c2 /doc/source/admin
parentd0ae891d9b9ba61e7721bc4234788e0390c0b492 (diff)
parenta165fe3264fd8f3a4bd7af9d7a958b9b3abf099f (diff)
downloadironic-42df92e7dd127e6a7308a4f7a498b055092203b4.tar.gz
Merge "Allow instance_info to override node interface"
Diffstat (limited to 'doc/source/admin')
-rw-r--r--doc/source/admin/index.rst1
-rw-r--r--doc/source/admin/node-interface-override.rst22
2 files changed, 23 insertions, 0 deletions
diff --git a/doc/source/admin/index.rst b/doc/source/admin/index.rst
index 3ca6ec26e..de260385e 100644
--- a/doc/source/admin/index.rst
+++ b/doc/source/admin/index.rst
@@ -30,6 +30,7 @@ the services.
Node Multi-Tenancy <node-multitenancy>
Fast-Track Deployment <fast-track>
Booting a Ramdisk or an ISO <ramdisk-boot>
+ Node Interface Override <node-interface-override>
Drivers, Hardware Types and Hardware Interfaces
-----------------------------------------------
diff --git a/doc/source/admin/node-interface-override.rst b/doc/source/admin/node-interface-override.rst
new file mode 100644
index 000000000..907c8a00c
--- /dev/null
+++ b/doc/source/admin/node-interface-override.rst
@@ -0,0 +1,22 @@
+=======================
+Node Interface Override
+=======================
+
+Non-admins with temporary access to a node, may wish to specify different
+node interfaces. However, allowing them to set these interface values is
+problematic, as there is no automated way to ensure that the original
+interface values are restored.
+
+This guide details a method for temporarily overriding a node interface
+value.
+
+Overriding a Node Interface
+===========================
+
+In order to temporarily override a node interface, simply set the
+appropriate value in `instance_info`. For example, if you'd like to
+override a node's storage interface, run the following::
+
+ baremetal node set --instance-info storage_interface=cinder node-1
+
+`instance_info` values persist until after a node is cleaned.