Skip to content

Commit 3da8d78

Browse files
deprecate global HostSubnetLength
1 parent 8cb0624 commit 3da8d78

File tree

5 files changed

+5
-6
lines changed

5 files changed

+5
-6
lines changed

pkg/cmd/server/api/types.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -614,7 +614,7 @@ type MasterNetworkConfig struct {
614614
NetworkPluginName string
615615
DeprecatedClusterNetworkCIDR string
616616
ClusterNetworks []ClusterNetworkEntry
617-
HostSubnetLength uint32
617+
DeprecatedHostSubnetLength uint32
618618
ServiceNetworkCIDR string
619619
// ExternalIPNetworkCIDRs controls what values are acceptable for the service external IP field. If empty, no externalIP
620620
// may be set. It may contain a list of CIDRs which are checked for access. If a CIDR is prefixed with !, IPs in that

pkg/cmd/server/api/v1/conversions.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ func addDefaultingFuncs(scheme *runtime.Scheme) error {
7979
setDefault_ClientConnectionOverrides(obj.MasterClients.ExternalKubernetesClientConnectionOverrides)
8080

8181
if len(obj.NetworkConfig.ClusterNetworks) == 0 {
82-
obj.NetworkConfig.ClusterNetworks = []ClusterNetworkEntry{{CIDR: obj.NetworkConfig.DeprecatedClusterNetworkCIDR}}
82+
obj.NetworkConfig.ClusterNetworks = []ClusterNetworkEntry{{CIDR: obj.NetworkConfig.DeprecatedClusterNetworkCIDR, HostSubnetLength: obj.NetworkConfig.DeprecatedHostSubnetLength}}
8383
}
8484
// Populate the new NetworkConfig.ServiceNetworkCIDR field from the KubernetesMasterConfig.ServicesSubnet field if needed
8585
if len(obj.NetworkConfig.ServiceNetworkCIDR) == 0 {

pkg/cmd/server/api/v1/types.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -499,8 +499,8 @@ type MasterNetworkConfig struct {
499499
DeprecatedClusterNetworkCIDR string `json:"clusterNetworkCIDR,omitempty`
500500
// ClusterNetworks is a list of cluster networks that defines the global overlay network's L3 space
501501
ClusterNetworks []ClusterNetworkEntry `json:"clusterNetworks"`
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
503-
HostSubnetLength uint32 `json:"hostSubnetLength"`
502+
// DeprecatedHostSubnetLength and maintined for backwards compatibility
503+
DeprecatedHostSubnetLength uint32 `json:"hostSubnetLength, omitempty"`
504504
// ServiceNetwork is the CIDR string to specify the service networks
505505
ServiceNetworkCIDR string `json:"serviceNetworkCIDR"`
506506
// ExternalIPNetworkCIDRs controls what values are acceptable for the service external IP field. If empty, no externalIP

pkg/cmd/server/start/master_args.go

-1
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,6 @@ func (args MasterArgs) BuildSerializeableMasterConfig() (*configapi.MasterConfig
282282
NetworkConfig: configapi.MasterNetworkConfig{
283283
NetworkPluginName: args.NetworkArgs.NetworkPluginName,
284284
ClusterNetworks: clusterNetworkConfig,
285-
HostSubnetLength: args.NetworkArgs.HostSubnetLength,
286285
ServiceNetworkCIDR: args.NetworkArgs.ServiceNetworkCIDR,
287286
},
288287

pkg/sdn/plugin/master.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ func StartMaster(networkConfig osconfigapi.MasterNetworkConfig, osClient *osclie
6363

6464
// Network: networkConfig.ClusterNetworkCIDR,
6565
ClusterNetworks: clusterNetworkEntries,
66-
HostSubnetLength: networkConfig.HostSubnetLength,
66+
//HostSubnetLength: networkConfig.HostSubnetLength,
6767
ServiceNetwork: networkConfig.ServiceNetworkCIDR,
6868
PluginName: networkConfig.NetworkPluginName,
6969
}

0 commit comments

Comments
 (0)