@@ -26,7 +26,7 @@ func TestValidateClusterNetwork(t *testing.T) {
26
26
name : "Good one" ,
27
27
cn : & api.ClusterNetwork {
28
28
ObjectMeta : metav1.ObjectMeta {Name : "any" },
29
- ClusterDef : []api.ClusterNetworkEntry {{ClusterNetworkCIDR : "10.20.0.0/16" }},
29
+ ClusterNetworks : []api.ClusterNetworkEntry {{CIDR : "10.20.0.0/16" }},
30
30
HostSubnetLength : 8 ,
31
31
ServiceNetwork : "172.30.0.0/16" ,
32
32
},
@@ -36,7 +36,7 @@ func TestValidateClusterNetwork(t *testing.T) {
36
36
name : "Good one multiple addresses" ,
37
37
cn : & api.ClusterNetwork {
38
38
ObjectMeta : metav1.ObjectMeta {Name : "any" },
39
- ClusterDef : []api.ClusterNetworkEntry {{ClusterNetworkCIDR : "10.20.0.0/16" }, {ClusterNetworkCIDR : "10.128.0.0/16" }},
39
+ ClusterNetworks : []api.ClusterNetworkEntry {{CIDR : "10.20.0.0/16" }, {CIDR : "10.128.0.0/16" }},
40
40
HostSubnetLength : 8 ,
41
41
ServiceNetwork : "172.30.0.0/16" ,
42
42
},
@@ -46,7 +46,7 @@ func TestValidateClusterNetwork(t *testing.T) {
46
46
name : "Bad network" ,
47
47
cn : & api.ClusterNetwork {
48
48
ObjectMeta : metav1.ObjectMeta {Name : "any" },
49
- ClusterDef : []api.ClusterNetworkEntry {{ClusterNetworkCIDR : "10.20.0.0.0/16" }},
49
+ ClusterNetworks : []api.ClusterNetworkEntry {{CIDR : "10.20.0.0.0/16" }},
50
50
HostSubnetLength : 8 ,
51
51
ServiceNetwork : "172.30.0.0/16" ,
52
52
},
@@ -56,7 +56,7 @@ func TestValidateClusterNetwork(t *testing.T) {
56
56
name : "Bad network CIDR" ,
57
57
cn : & api.ClusterNetwork {
58
58
ObjectMeta : metav1.ObjectMeta {Name : "any" },
59
- ClusterDef : []api.ClusterNetworkEntry {{ClusterNetworkCIDR : "10.20.0.1/16" }},
59
+ ClusterNetworks : []api.ClusterNetworkEntry {{CIDR : "10.20.0.1/16" }},
60
60
HostSubnetLength : 8 ,
61
61
ServiceNetwork : "172.30.0.0/16" ,
62
62
},
@@ -66,7 +66,7 @@ func TestValidateClusterNetwork(t *testing.T) {
66
66
name : "Subnet length too large for network" ,
67
67
cn : & api.ClusterNetwork {
68
68
ObjectMeta : metav1.ObjectMeta {Name : "any" },
69
- ClusterDef : []api.ClusterNetworkEntry {{ClusterNetworkCIDR : "10.20.30.0/24" }},
69
+ ClusterNetworks : []api.ClusterNetworkEntry {{CIDR : "10.20.30.0/24" }},
70
70
HostSubnetLength : 16 ,
71
71
ServiceNetwork : "172.30.0.0/16" ,
72
72
},
@@ -76,7 +76,7 @@ func TestValidateClusterNetwork(t *testing.T) {
76
76
name : "Subnet length too small" ,
77
77
cn : & api.ClusterNetwork {
78
78
ObjectMeta : metav1.ObjectMeta {Name : "any" },
79
- ClusterDef : []api.ClusterNetworkEntry {{ClusterNetworkCIDR : "10.20.0.0/16" }},
79
+ ClusterNetworks : []api.ClusterNetworkEntry {{CIDR : "10.20.0.0/16" }},
80
80
HostSubnetLength : 1 ,
81
81
ServiceNetwork : "172.30.0.0/16" ,
82
82
},
@@ -86,7 +86,7 @@ func TestValidateClusterNetwork(t *testing.T) {
86
86
name : "Bad service network" ,
87
87
cn : & api.ClusterNetwork {
88
88
ObjectMeta : metav1.ObjectMeta {Name : "any" },
89
- ClusterDef : []api.ClusterNetworkEntry {{ClusterNetworkCIDR : "10.20.0.0/16" }},
89
+ ClusterNetworks : []api.ClusterNetworkEntry {{CIDR : "10.20.0.0/16" }},
90
90
HostSubnetLength : 8 ,
91
91
ServiceNetwork : "1172.30.0.0/16" ,
92
92
},
@@ -96,27 +96,17 @@ func TestValidateClusterNetwork(t *testing.T) {
96
96
name : "Bad service network CIDR" ,
97
97
cn : & api.ClusterNetwork {
98
98
ObjectMeta : metav1.ObjectMeta {Name : "any" },
99
- ClusterDef : []api.ClusterNetworkEntry {{ClusterNetworkCIDR : "10.20.0.0/16" }},
99
+ ClusterNetworks : []api.ClusterNetworkEntry {{CIDR : "10.20.0.0/16" }},
100
100
HostSubnetLength : 8 ,
101
101
ServiceNetwork : "172.30.1.0/16" ,
102
102
},
103
103
expectedErrors : 1 ,
104
104
},
105
- {
106
- name : "Two cluster network addresses overlap" ,
107
- cn : & api.ClusterNetwork {
108
- ObjectMeta : metav1.ObjectMeta {Name : "any" },
109
- ClusterDef : []api.ClusterNetworkEntry {{ClusterNetworkCIDR : "10.20.0.0/16" }, {ClusterNetworkCIDR : "10.20.4.0/16" }},
110
- HostSubnetLength : 8 ,
111
- ServiceNetwork : "172.30.0.0/16" ,
112
- },
113
- expectedErrors : 2 ,
114
- },
115
105
{
116
106
name : "Service network overlaps with cluster network" ,
117
107
cn : & api.ClusterNetwork {
118
108
ObjectMeta : metav1.ObjectMeta {Name : "any" },
119
- ClusterDef : []api.ClusterNetworkEntry {{ClusterNetworkCIDR : "10.20.0.0/16" }},
109
+ ClusterNetworks : []api.ClusterNetworkEntry {{CIDR : "10.20.0.0/16" }},
120
110
HostSubnetLength : 8 ,
121
111
ServiceNetwork : "10.20.1.0/24" ,
122
112
},
@@ -126,7 +116,7 @@ func TestValidateClusterNetwork(t *testing.T) {
126
116
name : "Cluster network overlaps with service network" ,
127
117
cn : & api.ClusterNetwork {
128
118
ObjectMeta : metav1.ObjectMeta {Name : "any" },
129
- ClusterDef : []api.ClusterNetworkEntry {{ClusterNetworkCIDR : "10.20.0.0/16" }},
119
+ ClusterNetworks : []api.ClusterNetworkEntry {{CIDR : "10.20.0.0/16" }},
130
120
HostSubnetLength : 8 ,
131
121
ServiceNetwork : "10.0.0.0/8" ,
132
122
},
@@ -146,7 +136,7 @@ func TestValidateClusterNetwork(t *testing.T) {
146
136
func TestSetDefaultClusterNetwork (t * testing.T ) {
147
137
defaultClusterNetwork := api.ClusterNetwork {
148
138
ObjectMeta : metav1.ObjectMeta {Name : api .ClusterNetworkDefault },
149
- ClusterDef : []api.ClusterNetworkEntry {{ClusterNetworkCIDR : "10.20.0.0/16" }},
139
+ ClusterNetworks : []api.ClusterNetworkEntry {{CIDR : "10.20.0.0/16" }},
150
140
HostSubnetLength : 8 ,
151
141
ServiceNetwork : "172.30.0.0/16" ,
152
142
PluginName : "redhat/openshift-ovs-multitenant" ,
@@ -167,7 +157,7 @@ func TestSetDefaultClusterNetwork(t *testing.T) {
167
157
name : "Wrong Network" ,
168
158
cn : & api.ClusterNetwork {
169
159
ObjectMeta : metav1.ObjectMeta {Name : api .ClusterNetworkDefault },
170
- ClusterDef : []api.ClusterNetworkEntry {{ClusterNetworkCIDR : "10.30.0.0/16" }},
160
+ ClusterNetworks : []api.ClusterNetworkEntry {{CIDR : "10.30.0.0/16" }},
171
161
HostSubnetLength : 8 ,
172
162
ServiceNetwork : "172.30.0.0/16" ,
173
163
PluginName : "redhat/openshift-ovs-multitenant" ,
@@ -178,7 +168,7 @@ func TestSetDefaultClusterNetwork(t *testing.T) {
178
168
name : "Additional Network" ,
179
169
cn : & api.ClusterNetwork {
180
170
ObjectMeta : metav1.ObjectMeta {Name : api .ClusterNetworkDefault },
181
- ClusterDef : []api.ClusterNetworkEntry {{ClusterNetworkCIDR : "10.20.0.0/16" }, {ClusterNetworkCIDR : "10.30.0.0/16" }},
171
+ ClusterNetworks : []api.ClusterNetworkEntry {{CIDR : "10.20.0.0/16" }, {CIDR : "10.30.0.0/16" }},
182
172
HostSubnetLength : 8 ,
183
173
ServiceNetwork : "172.30.0.0/16" ,
184
174
PluginName : "redhat/openshift-ovs-multitenant" ,
@@ -189,7 +179,7 @@ func TestSetDefaultClusterNetwork(t *testing.T) {
189
179
name : "Wrong HostSubnetLength" ,
190
180
cn : & api.ClusterNetwork {
191
181
ObjectMeta : metav1.ObjectMeta {Name : api .ClusterNetworkDefault },
192
- ClusterDef : []api.ClusterNetworkEntry {{ClusterNetworkCIDR : "10.20.0.0/16" }},
182
+ ClusterNetworks : []api.ClusterNetworkEntry {{CIDR : "10.20.0.0/16" }},
193
183
HostSubnetLength : 9 ,
194
184
ServiceNetwork : "172.30.0.0/16" ,
195
185
PluginName : "redhat/openshift-ovs-multitenant" ,
@@ -200,7 +190,7 @@ func TestSetDefaultClusterNetwork(t *testing.T) {
200
190
name : "Wrong ServiceNetwork" ,
201
191
cn : & api.ClusterNetwork {
202
192
ObjectMeta : metav1.ObjectMeta {Name : api .ClusterNetworkDefault },
203
- ClusterDef : []api.ClusterNetworkEntry {{ClusterNetworkCIDR : "10.20.0.0/16" }},
193
+ ClusterNetworks : []api.ClusterNetworkEntry {{CIDR : "10.20.0.0/16" }},
204
194
HostSubnetLength : 8 ,
205
195
ServiceNetwork : "172.20.0.0/16" ,
206
196
PluginName : "redhat/openshift-ovs-multitenant" ,
@@ -211,7 +201,7 @@ func TestSetDefaultClusterNetwork(t *testing.T) {
211
201
name : "Wrong PluginName" ,
212
202
cn : & api.ClusterNetwork {
213
203
ObjectMeta : metav1.ObjectMeta {Name : api .ClusterNetworkDefault },
214
- ClusterDef : []api.ClusterNetworkEntry {{ClusterNetworkCIDR : "10.20.0.0/16" }},
204
+ ClusterNetworks : []api.ClusterNetworkEntry {{CIDR : "10.20.0.0/16" }},
215
205
HostSubnetLength : 8 ,
216
206
ServiceNetwork : "172.30.0.0/16" ,
217
207
PluginName : "redhat/openshift-ovs-subnet" ,
0 commit comments