nodepool_spec_network_devices
NetworkDeviceSpec defines the network configuration for a node's network device.
{
"dhcp4": true,
"nameservers": [
"nameservers",
"nameservers"
],
"dhcp6": true,
"networkName": "networkName",
"gateway6": "gateway6",
"gateway4": "gateway4",
"mtu": 5
}
DHCP4 is a flag that indicates whether or not to use DHCP for IPv4 on this device. If true then IPAddrs should not contain any IPv4 addresses.
DHCP6 is a flag that indicates whether or not to use DHCP for IPv6 on this device. If true then IPAddrs should not contain any IPv6 addresses.
Gateway4 is the IPv4 gateway used by this device. Required when DHCP4 is false.
Gateway4 is the IPv4 gateway used by this device. Required when DHCP6 is false.
MTU is the device's Maximum Transmission Unit size in bytes.
Nameservers is a list of IPv4 and/or IPv6 addresses used as DNS nameservers. Please note that Linux allows only three nameservers (https://linux.die.net/man/5/resolv.conf).
NetworkName is the name of the vSphere network to which the device will be connected.