From f4f91d033119034cf4091713138fc8472002ffd5 Mon Sep 17 00:00:00 2001 From: Zane Bitter Date: Tue, 16 Apr 2024 14:10:13 +1200 Subject: [PATCH] TELCODOCS-1837: Fix erroneous example in day 1 bare metal networking config There is no "nmstate" key under "networkConfig" inside the install-config, as can be observed from all of the other examples. (The "nmstate" key is where the NMState data lives in the Secret generated from the install-config to associate with the BareMetalHost, or by the user when adding nodes on Day 2.) --- ...g-host-network-interfaces-for-subnets.adoc | 31 +++++++++---------- 1 file changed, 15 insertions(+), 16 deletions(-) diff --git a/modules/ipi-install-configuring-host-network-interfaces-for-subnets.adoc b/modules/ipi-install-configuring-host-network-interfaces-for-subnets.adoc index e4ee3e73889d..2d225908ae60 100644 --- a/modules/ipi-install-configuring-host-network-interfaces-for-subnets.adoc +++ b/modules/ipi-install-configuring-host-network-interfaces-for-subnets.adoc @@ -35,22 +35,21 @@ networking: [source,yaml] ---- networkConfig: - nmstate: - interfaces: - - name: <1> - type: ethernet - state: up - ipv4: - enabled: true - dhcp: false - address: - - ip: <2> - prefix-length: 24 - gateway: <3> - dns-resolver: - config: - server: - - <4> + interfaces: + - name: <1> + type: ethernet + state: up + ipv4: + enabled: true + dhcp: false + address: + - ip: <2> + prefix-length: 24 + gateway: <3> + dns-resolver: + config: + server: + - <4> ---- + <1> Replace `` with the interface name.