From e6e06a6cc2d6d4baae05610fd74c9ada55607ca8 Mon Sep 17 00:00:00 2001 From: Sergei Lukianov Date: Wed, 28 Aug 2024 11:08:56 -0700 Subject: [PATCH] Update vpc docs with dns/ntp/mtu dhcp options (cherry picked from commit 4788715e644333877ba6ad69e2989b8d1b547439) --- docs/user-guide/vpcs.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/user-guide/vpcs.md b/docs/user-guide/vpcs.md index 22704bd..38fb24c 100644 --- a/docs/user-guide/vpcs.md +++ b/docs/user-guide/vpcs.md @@ -25,7 +25,13 @@ spec: range: # Optionally, start/end range could be specified, otherwise all available IPs are used start: 10.10.1.10 end: 10.10.1.99 - pxeURL: tftp://10.10.10.99/bootfilename # PXEURL (optional) to identify the PXE server to use to boot hosts; HTTP query strings are not supported + options: # Optional, additional DHCP options to enable for DHCP server, only available when enable is true + pxeURL: tftp://10.10.10.99/bootfilename # PXEURL (optional) to identify the PXE server to use to boot hosts; HTTP query strings are not supported + dnsServers: # (optional) configure DNS servers + - 1.1.1.1 + timeServers: # (optional) configure Time (NTP) Servers + - 1.1.1.1 + interfaceMTU: 1500 # (optional) configure the MTU (default is 9036); doesn't affect the actual MTU of the switch interfaces subnet: 10.10.1.0/24 # User-defined subnet from ipv4 namespace gateway: 10.10.1.1 # User-defined gateway (optional, default is .1) vlan: 1001 # User-defined VLAN from VLAN namespace