Skip to content

Commit bb6f842

Browse files
Merge pull request #14558 from JacobTanenbaum/CIDR-work
Automatic merge from submit-queue (batch tested with PRs 14558, 16544). Support multiple CIDR addresses for the pod SDN Work in progress PR for multiple CIDR address work. addresses can be defined in the master config file by ``` networkConfig: clusterNetworkCIDR: "" clusterNetworkConfig: - clusterNetworkCIDR: 10.128.0.0/28 - clusterNetworkCIDR: 12.128.0.0/28 externalIPNetworkCIDRs: null ``` or by passing a comma seporated list of them on the command line using --network-cidr="10.128.0.0/28,12.128.0.0/28" besides general review - I could use some feedback on how to do a few things - [ ] How should I deal with a config file that defined ClusterNetworkCIDR the old way? - [ ] In pkg/sdn/plugin/master.go there where checks to see if the cluster cidr was shrunk, I don't think that check is still required. It should be valid to break a large cluster cidr into it's smaller components. Is checking that all objects are allocated in defined places enough? As done by checkclusterobjects() in pkg/sdn/plugin/common.go - [x] I need to change oc get clusternetwork to show a comma separated list - [ ] finish the unit testing review of the work so far and input on the above questions are appreciated @knobunc @dcbw @danwinship @rajatchopra
2 parents 092c32e + d1e46b9 commit bb6f842

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+1191
-409
lines changed

api/docs/apis-network.openshift.io/v1.ClusterNetwork.adoc

+4-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@ Expand or mouse-over a field for more information about it.
1919
++++
2020
<pre>
2121
<div style="margin-left:13px;"><span title="(string) APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources">apiVersion</span>:
22-
</div><div style="margin-left:13px;"><span title="(integer) HostSubnetLength is the number of bits of network to allocate to each node. eg, 8 would mean that each node would have a /24 slice of the overlay network for its pods">hostsubnetlength</span>:
22+
</div><details><summary><span title="(array) ClusterNetworks is a list of ClusterNetwork objects that defines the global overlay network&#39;s L3 space by specifying a set of CIDR and netmasks that the SDN can allocate addressed from.">clusterNetworks</span>:
23+
</summary><div style="margin-left:13px;">- <span title="(string) CIDR defines the total range of a cluster networks address space.">CIDR</span>:
24+
</div><div style="margin-left:13px;"> <span title="(integer) HostSubnetLength is the number of bits of the accompanying CIDR address to allocate to each node. eg, 8 would mean that each node would have a /24 slice of the overlay network for its pods.">hostSubnetLength</span>:
25+
</div></details><div style="margin-left:13px;"><span title="(integer) HostSubnetLength is the number of bits of network to allocate to each node. eg, 8 would mean that each node would have a /24 slice of the overlay network for its pods">hostsubnetlength</span>:
2326
</div><div style="margin-left:13px;"><span title="(string) Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds">kind</span>:
2427
</div><details open><summary><span title="(v1.ObjectMeta) Standard object&#39;s metadata.">metadata</span>:
2528
</summary><details><summary> <span title="(object) Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations">annotations</span>:

api/docs/oapi/v1.ClusterNetwork.adoc

+4-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@ Expand or mouse-over a field for more information about it.
1919
++++
2020
<pre>
2121
<div style="margin-left:13px;"><span title="(string) APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources">apiVersion</span>:
22-
</div><div style="margin-left:13px;"><span title="(integer) HostSubnetLength is the number of bits of network to allocate to each node. eg, 8 would mean that each node would have a /24 slice of the overlay network for its pods">hostsubnetlength</span>:
22+
</div><details><summary><span title="(array) ClusterNetworks is a list of ClusterNetwork objects that defines the global overlay network&#39;s L3 space by specifying a set of CIDR and netmasks that the SDN can allocate addressed from.">clusterNetworks</span>:
23+
</summary><div style="margin-left:13px;">- <span title="(string) CIDR defines the total range of a cluster networks address space.">CIDR</span>:
24+
</div><div style="margin-left:13px;"> <span title="(integer) HostSubnetLength is the number of bits of the accompanying CIDR address to allocate to each node. eg, 8 would mean that each node would have a /24 slice of the overlay network for its pods.">hostSubnetLength</span>:
25+
</div></details><div style="margin-left:13px;"><span title="(integer) HostSubnetLength is the number of bits of network to allocate to each node. eg, 8 would mean that each node would have a /24 slice of the overlay network for its pods">hostsubnetlength</span>:
2326
</div><div style="margin-left:13px;"><span title="(string) Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds">kind</span>:
2427
</div><details open><summary><span title="(v1.ObjectMeta) Standard object&#39;s metadata.">metadata</span>:
2528
</summary><details><summary> <span title="(object) Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations">annotations</span>:

api/protobuf-spec/github_com_openshift_origin_pkg_network_apis_network_v1.proto

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/swagger-spec/oapi-v1.json

+27-3
Original file line numberDiff line numberDiff line change
@@ -22781,9 +22781,8 @@
2278122781
"id": "v1.ClusterNetwork",
2278222782
"description": "ClusterNetwork describes the cluster network. There is normally only one object of this type, named \"default\", which is created by the SDN network plugin based on the master configuration when the cluster is brought up for the first time.",
2278322783
"required": [
22784-
"network",
22785-
"hostsubnetlength",
22786-
"serviceNetwork"
22784+
"serviceNetwork",
22785+
"clusterNetworks"
2278722786
],
2278822787
"properties": {
2278922788
"kind": {
@@ -22813,6 +22812,31 @@
2281322812
"pluginName": {
2281422813
"type": "string",
2281522814
"description": "PluginName is the name of the network plugin being used"
22815+
},
22816+
"clusterNetworks": {
22817+
"type": "array",
22818+
"items": {
22819+
"$ref": "v1.ClusterNetworkEntry"
22820+
},
22821+
"description": "ClusterNetworks is a list of ClusterNetwork objects that defines the global overlay network's L3 space by specifying a set of CIDR and netmasks that the SDN can allocate addressed from."
22822+
}
22823+
}
22824+
},
22825+
"v1.ClusterNetworkEntry": {
22826+
"id": "v1.ClusterNetworkEntry",
22827+
"description": "ClusterNetworkEntry defines an individual cluster network. The CIDRs cannot overlap with other cluster network CIDRs, CIDRs reserved for external ips, CIDRs reserved for service networks, and CIDRs reserved for ingress ips.",
22828+
"required": [
22829+
"CIDR",
22830+
"hostSubnetLength"
22831+
],
22832+
"properties": {
22833+
"CIDR": {
22834+
"type": "string",
22835+
"description": "CIDR defines the total range of a cluster networks address space."
22836+
},
22837+
"hostSubnetLength": {
22838+
"type": "integer",
22839+
"description": "HostSubnetLength is the number of bits of the accompanying CIDR address to allocate to each node. eg, 8 would mean that each node would have a /24 slice of the overlay network for its pods."
2281622840
}
2281722841
}
2281822842
},

api/swagger-spec/openshift-openapi-spec.json

+27-3
Original file line numberDiff line numberDiff line change
@@ -90742,15 +90742,21 @@
9074290742
"com.github.openshift.origin.pkg.network.apis.network.v1.ClusterNetwork": {
9074390743
"description": "ClusterNetwork describes the cluster network. There is normally only one object of this type, named \"default\", which is created by the SDN network plugin based on the master configuration when the cluster is brought up for the first time.",
9074490744
"required": [
90745-
"network",
90746-
"hostsubnetlength",
90747-
"serviceNetwork"
90745+
"serviceNetwork",
90746+
"clusterNetworks"
9074890747
],
9074990748
"properties": {
9075090749
"apiVersion": {
9075190750
"description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources",
9075290751
"type": "string"
9075390752
},
90753+
"clusterNetworks": {
90754+
"description": "ClusterNetworks is a list of ClusterNetwork objects that defines the global overlay network's L3 space by specifying a set of CIDR and netmasks that the SDN can allocate addressed from.",
90755+
"type": "array",
90756+
"items": {
90757+
"$ref": "#/definitions/com.github.openshift.origin.pkg.network.apis.network.v1.ClusterNetworkEntry"
90758+
}
90759+
},
9075490760
"hostsubnetlength": {
9075590761
"description": "HostSubnetLength is the number of bits of network to allocate to each node. eg, 8 would mean that each node would have a /24 slice of the overlay network for its pods",
9075690762
"type": "integer",
@@ -90790,6 +90796,24 @@
9079090796
}
9079190797
]
9079290798
},
90799+
"com.github.openshift.origin.pkg.network.apis.network.v1.ClusterNetworkEntry": {
90800+
"description": "ClusterNetworkEntry defines an individual cluster network. The CIDRs cannot overlap with other cluster network CIDRs, CIDRs reserved for external ips, CIDRs reserved for service networks, and CIDRs reserved for ingress ips.",
90801+
"required": [
90802+
"CIDR",
90803+
"hostSubnetLength"
90804+
],
90805+
"properties": {
90806+
"CIDR": {
90807+
"description": "CIDR defines the total range of a cluster networks address space.",
90808+
"type": "string"
90809+
},
90810+
"hostSubnetLength": {
90811+
"description": "HostSubnetLength is the number of bits of the accompanying CIDR address to allocate to each node. eg, 8 would mean that each node would have a /24 slice of the overlay network for its pods.",
90812+
"type": "integer",
90813+
"format": "int64"
90814+
}
90815+
}
90816+
},
9079390817
"com.github.openshift.origin.pkg.network.apis.network.v1.ClusterNetworkList": {
9079490818
"description": "ClusterNetworkList is a collection of ClusterNetworks",
9079590819
"required": [

pkg/cmd/server/api/serialization_test.go

+21-1
Original file line numberDiff line numberDiff line change
@@ -112,13 +112,33 @@ func fuzzInternalObject(t *testing.T, forVersion schema.GroupVersion, item runti
112112
obj.NetworkConfig.ServiceNetworkCIDR = "10.0.0.0/24"
113113
}
114114
}
115+
if len(obj.NetworkConfig.ClusterNetworks) == 0 {
116+
clusterNetwork := []configapi.ClusterNetworkEntry{
117+
{
118+
CIDR: "10.128.0.0/14",
119+
HostSubnetLength: 9,
120+
},
121+
}
122+
obj.NetworkConfig.ClusterNetworks = clusterNetwork
123+
}
115124

116125
// TODO stop duplicating the conversion in the test.
117126
kubeConfig := obj.KubernetesMasterConfig
118127
noCloudProvider := kubeConfig != nil && (len(kubeConfig.ControllerArguments["cloud-provider"]) == 0 || kubeConfig.ControllerArguments["cloud-provider"][0] == "")
119128
if noCloudProvider && len(obj.NetworkConfig.IngressIPNetworkCIDR) == 0 {
120129
cidr := configapi.DefaultIngressIPNetworkCIDR
121-
if !(configapi.CIDRsOverlap(cidr, obj.NetworkConfig.ClusterNetworkCIDR) || configapi.CIDRsOverlap(cidr, obj.NetworkConfig.ServiceNetworkCIDR)) {
130+
setCIDR := true
131+
if configapi.CIDRsOverlap(cidr, obj.NetworkConfig.ServiceNetworkCIDR) {
132+
setCIDR = false
133+
} else {
134+
for _, clusterNetwork := range obj.NetworkConfig.ClusterNetworks {
135+
if configapi.CIDRsOverlap(cidr, clusterNetwork.CIDR) {
136+
setCIDR = false
137+
break
138+
}
139+
}
140+
}
141+
if setCIDR {
122142
obj.NetworkConfig.IngressIPNetworkCIDR = cidr
123143
}
124144
}

pkg/cmd/server/api/types.go

+15-4
Original file line numberDiff line numberDiff line change
@@ -667,10 +667,12 @@ type UserAgentDenyRule struct {
667667

668668
// MasterNetworkConfig to be passed to the compiled in network plugin
669669
type MasterNetworkConfig struct {
670-
NetworkPluginName string
671-
ClusterNetworkCIDR string
672-
HostSubnetLength uint32
673-
ServiceNetworkCIDR string
670+
NetworkPluginName string
671+
DeprecatedClusterNetworkCIDR string
672+
// ClusterNetworks contains a list of cluster networks that defines the global overlay networks L3 space.
673+
ClusterNetworks []ClusterNetworkEntry
674+
DeprecatedHostSubnetLength uint32
675+
ServiceNetworkCIDR string
674676
// ExternalIPNetworkCIDRs controls what values are acceptable for the service external IP field. If empty, no externalIP
675677
// may be set. It may contain a list of CIDRs which are checked for access. If a CIDR is prefixed with !, IPs in that
676678
// CIDR will be rejected. Rejections will be applied first, then the IP checked against one of the allowed CIDRs. You
@@ -683,6 +685,15 @@ type MasterNetworkConfig struct {
683685
IngressIPNetworkCIDR string
684686
}
685687

688+
// ClusterNetworkEntry defines an individual cluster network. The CIDRs cannot overlap with other cluster network CIDRs, CIDRs
689+
// reserved for external ips, CIDRs reserved for service networks, and CIDRs reserved for ingress ips.
690+
type ClusterNetworkEntry struct {
691+
// CIDR defines the total range of a cluster networks address space.
692+
CIDR string
693+
// HostSubnetLength gives the number of address bits reserved for pod IPs on each node.
694+
HostSubnetLength uint32
695+
}
696+
686697
type ImageConfig struct {
687698
// Format describes how to determine image names for system components
688699
Format string

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

+18-1
Original file line numberDiff line numberDiff line change
@@ -90,14 +90,31 @@ func SetDefaults_MasterConfig(obj *MasterConfig) {
9090
obj.NetworkConfig.ServiceNetworkCIDR = "10.0.0.0/24"
9191
}
9292
}
93+
if len(obj.NetworkConfig.ClusterNetworks) == 0 {
94+
obj.NetworkConfig.ClusterNetworks = []ClusterNetworkEntry{{CIDR: obj.NetworkConfig.DeprecatedClusterNetworkCIDR, HostSubnetLength: obj.NetworkConfig.DeprecatedHostSubnetLength}}
95+
96+
obj.NetworkConfig.DeprecatedClusterNetworkCIDR = ""
97+
obj.NetworkConfig.DeprecatedHostSubnetLength = 0
98+
}
9399

94100
// TODO Detect cloud provider when not using built-in kubernetes
95101
kubeConfig := obj.KubernetesMasterConfig
96102
noCloudProvider := kubeConfig != nil && (len(kubeConfig.ControllerArguments["cloud-provider"]) == 0 || kubeConfig.ControllerArguments["cloud-provider"][0] == "")
97103

98104
if noCloudProvider && len(obj.NetworkConfig.IngressIPNetworkCIDR) == 0 {
99105
cidr := internal.DefaultIngressIPNetworkCIDR
100-
if !(internal.CIDRsOverlap(cidr, obj.NetworkConfig.ClusterNetworkCIDR) || internal.CIDRsOverlap(cidr, obj.NetworkConfig.ServiceNetworkCIDR)) {
106+
cidrOverlap := false
107+
if internal.CIDRsOverlap(cidr, obj.NetworkConfig.ServiceNetworkCIDR) {
108+
cidrOverlap = true
109+
} else {
110+
for _, entry := range obj.NetworkConfig.ClusterNetworks {
111+
if internal.CIDRsOverlap(cidr, entry.CIDR) {
112+
cidrOverlap = true
113+
break
114+
}
115+
}
116+
}
117+
if !cidrOverlap {
101118
obj.NetworkConfig.IngressIPNetworkCIDR = cidr
102119
}
103120
}

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

+13-2
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,16 @@ func (ClientConnectionOverrides) SwaggerDoc() map[string]string {
145145
return map_ClientConnectionOverrides
146146
}
147147

148+
var map_ClusterNetworkEntry = map[string]string{
149+
"": "ClusterNetworkEntry defines an individual cluster network. The CIDRs cannot overlap with other cluster network CIDRs, CIDRs reserved for external ips, CIDRs reserved for service networks, and CIDRs reserved for ingress ips.",
150+
"cidr": "CIDR defines the total range of a cluster networks address space.",
151+
"hostSubnetLength": "HostSubnetLength is the number of bits of the accompanying CIDR address to allocate to each node. eg, 8 would mean that each node would have a /24 slice of the overlay network for its pod.",
152+
}
153+
154+
func (ClusterNetworkEntry) SwaggerDoc() map[string]string {
155+
return map_ClusterNetworkEntry
156+
}
157+
148158
var map_ControllerConfig = map[string]string{
149159
"": "ControllerConfig holds configuration values for controllers",
150160
"election": "Election defines the configuration for electing a controller instance to make changes to the cluster. If unspecified, the ControllerTTL value is checked to determine whether the legacy direct etcd election code will be used.",
@@ -536,8 +546,9 @@ func (MasterConfig) SwaggerDoc() map[string]string {
536546
var map_MasterNetworkConfig = map[string]string{
537547
"": "MasterNetworkConfig to be passed to the compiled in network plugin",
538548
"networkPluginName": "NetworkPluginName is the name of the network plugin to use",
539-
"clusterNetworkCIDR": "ClusterNetworkCIDR is the CIDR string to specify the global overlay network's L3 space",
540-
"hostSubnetLength": "HostSubnetLength is the number of bits to allocate to each host's subnet e.g. 8 would mean a /24 network on the host",
549+
"clusterNetworkCIDR": "ClusterNetworkCIDR is the CIDR string to specify the global overlay network's L3 space. Deprecated, but maintained for backwards compatibility, use ClusterNetworks instead.",
550+
"clusterNetworks": "ClusterNetworks is a list of ClusterNetwork objects that defines the global overlay network's L3 space by specifying a set of CIDR and netmasks that the SDN can allocate addressed from. If this is specified, then ClusterNetworkCIDR and HostSubnetLength may not be set.",
551+
"hostSubnetLength": "HostSubnetLength is the number of bits to allocate to each host's subnet e.g. 8 would mean a /24 network on the host. Deprecated, but maintained for backwards compatibility, use ClusterNetworks instead.",
541552
"serviceNetworkCIDR": "ServiceNetwork is the CIDR string to specify the service networks",
542553
"externalIPNetworkCIDRs": "ExternalIPNetworkCIDRs controls what values are acceptable for the service external IP field. If empty, no externalIP may be set. It may contain a list of CIDRs which are checked for access. If a CIDR is prefixed with !, IPs in that CIDR will be rejected. Rejections will be applied first, then the IP checked against one of the allowed CIDRs. You should ensure this range does not overlap with your nodes, pods, or service CIDRs for security reasons.",
543554
"ingressIPNetworkCIDR": "IngressIPNetworkCIDR controls the range to assign ingress ips from for services of type LoadBalancer on bare metal. If empty, ingress ips will not be assigned. It may contain a single CIDR that will be allocated from. For security reasons, you should ensure that this range does not overlap with the CIDRs reserved for external ips, nodes, pods, or services.",

0 commit comments

Comments
 (0)