You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/ref/apis/vpc.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -207,6 +207,7 @@ _Appears in:_
207
207
|`DHCPDeactivated`||
208
208
|`DHCPServer`||
209
209
|`DHCPRelay`||
210
+
|`DHCPServerStateless`||
210
211
211
212
212
213
#### DHCPv6ServerAdditionalConfig
@@ -908,7 +909,7 @@ _Appears in:_
908
909
909
910
| Field | Description | Default | Validation |
910
911
| --- | --- | --- | --- |
911
-
|`mode`_[DHCPConfigMode](#dhcpconfigmode)_| DHCP Mode. DHCPDeactivated will be used if it is not defined. || Enum: [DHCPServer DHCPRelay DHCPDeactivated] <br /> |
912
+
|`mode`_[DHCPConfigMode](#dhcpconfigmode)_| DHCP Mode. DHCPDeactivated will be used if it is not defined. || Enum: [DHCPServer DHCPRelay DHCPDeactivated DHCPServerStateless] <br /> |
912
913
|`dhcpServerAdditionalConfig`_[DHCPServerAdditionalConfig](#dhcpserveradditionalconfig)_| Additional DHCP server config for a VPC Subnet. |||
913
914
914
915
@@ -1236,7 +1237,7 @@ _Appears in:_
1236
1237
1237
1238
| Field | Description | Default | Validation |
1238
1239
| --- | --- | --- | --- |
1239
-
|`vpc`_string_| NSX path of the VPC the Namespace is associated with.<br />If vpc is set, only defaultSubnetSize takes effect, other fields are ignored. |||
1240
+
|`vpc`_string_| NSX path of the VPC the Namespace is associated with.<br />If vpc is set, only defaultSubnetSize and defaultIPv6PrefixLength take effect, other fields are ignored. |||
1240
1241
|`subnets`_[SharedSubnet](#sharedsubnet) array_| Shared Subnets the Namespace is associated with. |||
1241
1242
|`nsxProject`_string_| NSX Project the Namespace is associated with. |||
1242
1243
|`vpcConnectivityProfile`_string_| VPCConnectivityProfile Path. This profile has configuration related to creating VPC transit gateway attachment. |||
// SubnetSpec defines the desired state of Subnet.
@@ -162,7 +163,7 @@ type DHCPServerAdditionalConfig struct {
162
163
// +kubebuilder:validation:XValidation:rule="(!has(self.mode)|| self.mode=='DHCPDeactivated' || self.mode=='DHCPRelay' ) && (!has(self.dhcpServerAdditionalConfig) || !has(self.dhcpServerAdditionalConfig.reservedIPRanges) || size(self.dhcpServerAdditionalConfig.reservedIPRanges)==0) || has(self.mode) && self.mode=='DHCPServer'", message="DHCPServerAdditionalConfig must be cleared when Subnet has DHCP relay enabled or DHCP is deactivated."
163
164
typeSubnetDHCPConfigstruct {
164
165
// DHCP Mode. DHCPDeactivated will be used if it is not defined.
0 commit comments