File tree 3 files changed +6
-3
lines changed
3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -611,7 +611,7 @@ type UserAgentDenyRule struct {
611
611
// MasterNetworkConfig to be passed to the compiled in network plugin
612
612
type MasterNetworkConfig struct {
613
613
NetworkPluginName string
614
- ClusterNetworkCIDR string
614
+ DeprecatedClusterNetworkCIDR string
615
615
ClusterNetworks []ClusterNetworkEntry
616
616
HostSubnetLength uint32
617
617
ServiceNetworkCIDR string
Original file line number Diff line number Diff line change @@ -78,6 +78,9 @@ func addDefaultingFuncs(scheme *runtime.Scheme) error {
78
78
}
79
79
setDefault_ClientConnectionOverrides (obj .MasterClients .ExternalKubernetesClientConnectionOverrides )
80
80
81
+ if len (obj .NetworkConfig .ClusterNetworks ) == 0 {
82
+ obj .NetworkConfig .ClusterNetworks = []ClusterNetworkEntry {{CIDR : obj .NetworkConfig .DeprecatedClusterNetworkCIDR }}
83
+ }
81
84
// Populate the new NetworkConfig.ServiceNetworkCIDR field from the KubernetesMasterConfig.ServicesSubnet field if needed
82
85
if len (obj .NetworkConfig .ServiceNetworkCIDR ) == 0 {
83
86
if obj .KubernetesMasterConfig != nil && len (obj .KubernetesMasterConfig .ServicesSubnet ) > 0 {
Original file line number Diff line number Diff line change @@ -495,8 +495,8 @@ type RoutingConfig struct {
495
495
type MasterNetworkConfig struct {
496
496
// NetworkPluginName is the name of the network plugin to use
497
497
NetworkPluginName string `json:"networkPluginName"`
498
- // ClusterNetworkCIDR is the CIDR string to specify the global overlay network's L3 space
499
- ClusterNetworkCIDR string `json:"clusterNetworkCIDR" `
498
+ // Deprecated and maintained for backwards compatibility, use ClusterNetworks instead
499
+ DeprecatedClusterNetworkCIDR string `json:"clusterNetworkCIDR,omitempty `
500
500
// ClusterNetworks is a list of cluster networks that defines the global overlay network's L3 space
501
501
ClusterNetworks []ClusterNetworkEntry `json:"clusterNetworks"`
502
502
// HostSubnetLength is the number of bits to allocate to each host's subnet e.g. 8 would mean a /24 network on the host
You can’t perform that action at this time.
0 commit comments