Skip to content

Commit 28e55c5

Browse files
deprecate NetworkConfig.ClusterNetworkCIDR
1 parent 7b572df commit 28e55c5

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

pkg/cmd/server/api/types.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -611,7 +611,7 @@ type UserAgentDenyRule struct {
611611
// MasterNetworkConfig to be passed to the compiled in network plugin
612612
type MasterNetworkConfig struct {
613613
NetworkPluginName string
614-
ClusterNetworkCIDR string
614+
DeprecatedClusterNetworkCIDR string
615615
ClusterNetworks []ClusterNetworkEntry
616616
HostSubnetLength uint32
617617
ServiceNetworkCIDR string

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

+3
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,9 @@ func addDefaultingFuncs(scheme *runtime.Scheme) error {
7878
}
7979
setDefault_ClientConnectionOverrides(obj.MasterClients.ExternalKubernetesClientConnectionOverrides)
8080

81+
if len(obj.NetworkConfig.ClusterNetworks) == 0 {
82+
obj.NetworkConfig.ClusterNetworks = []ClusterNetworkEntry{{CIDR: obj.NetworkConfig.DeprecatedClusterNetworkCIDR}}
83+
}
8184
// Populate the new NetworkConfig.ServiceNetworkCIDR field from the KubernetesMasterConfig.ServicesSubnet field if needed
8285
if len(obj.NetworkConfig.ServiceNetworkCIDR) == 0 {
8386
if obj.KubernetesMasterConfig != nil && len(obj.KubernetesMasterConfig.ServicesSubnet) > 0 {

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -495,8 +495,8 @@ type RoutingConfig struct {
495495
type MasterNetworkConfig struct {
496496
// NetworkPluginName is the name of the network plugin to use
497497
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`
500500
// ClusterNetworks is a list of cluster networks that defines the global overlay network's L3 space
501501
ClusterNetworks []ClusterNetworkEntry `json:"clusterNetworks"`
502502
// HostSubnetLength is the number of bits to allocate to each host's subnet e.g. 8 would mean a /24 network on the host

0 commit comments

Comments
 (0)