From 9c29db8bfe9a8589b62f3c1a81ab0b5fd284a36a Mon Sep 17 00:00:00 2001 From: Kevin Carter Date: Wed, 10 Jan 2024 20:26:53 -0600 Subject: [PATCH] Update default-DHCP.yaml Add more comments to the example file --- etc/netplan/default-DHCP.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/etc/netplan/default-DHCP.yaml b/etc/netplan/default-DHCP.yaml index ec73cb69..2c9e5e52 100644 --- a/etc/netplan/default-DHCP.yaml +++ b/etc/netplan/default-DHCP.yaml @@ -12,7 +12,7 @@ network: set-name: enp196s0f1 bonds: bond0: - dhcp4: true + dhcp4: true # Using DHCP for this example but not required interfaces: - enp143s0f0 # A side - enp196s0f0 # B side @@ -29,24 +29,24 @@ network: mii-monitor-interval: 100 mode: 802.3ad vlans: - vlan206: # this is the interface that will be given to K8S via bond0. + vlan206: # this is the interface that will be given to K8S via bond0 accept-ra: false addresses: - - 172.16.24.1/22 # Statically assigned IP address + - 172.16.24.1/22 # Statically assigned IP address, increment on every node id: 206 link: bond0 mtu: 1500 - vlan306: # this is the interface that will be given to Controllers via bond0. + vlan306: # this is the interface that will be given to Controllers via bond0 accept-ra: false addresses: - - 172.18.24.1/22 # Statically assigned IP address + - 172.18.24.1/22 # Statically assigned IP address, increment on every node id: 306 link: bond0 mtu: 1500 - vlan406: # this is the interface that will be given to Computes via bond0. + vlan406: # this is the interface that will be given to Computes via bond0 accept-ra: false addresses: - - 172.20.24.1/22 # Statically assigned IP address + - 172.20.24.1/22 # Statically assigned IP address, increment on every node id: 406 link: bond0 mtu: 1500