Skip to content

Commit dfe0224

Browse files
Merge pull request #20258 from danwinship/auto-egress-ip-master
Auto-assign egress IPs from EgressCIDRs
2 parents 410706e + e029a84 commit dfe0224

40 files changed

+1376
-541
lines changed

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

+3-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ 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><details><summary><span title="(array) EgressIPs is the list of automatic egress IP addresses currently hosted by this node">egressIPs</span>:
22+
</div><details><summary><span title="(array) EgressCIDRs is the list of CIDR ranges available for automatically assigning egress IPs to this node from. If this field is set then EgressIPs should be treated as read-only.">egressCIDRs</span>:
23+
</summary><div style="margin-left:13px;">- <span title="(string)">[string]</span>:
24+
</div></details><details><summary><span title="(array) EgressIPs is the list of automatic egress IP addresses currently hosted by this node. If EgressCIDRs is empty, this can be set by hand; if EgressCIDRs is set then the master will overwrite the value here with its own allocation of egress IPs.">egressIPs</span>:
2325
</summary><div style="margin-left:13px;">- <span title="(string)">[string]</span>:
2426
</div></details><div style="margin-left:13px;"><span title="(string) Host is the name of the node. (This is the same as the object&#39;s name, but both fields must be set.)">host</span>:
2527
</div><div style="margin-left:13px;"><span title="(string) HostIP is the IP address to be used as a VTEP by other nodes in the overlay network">hostIP</span>:

api/docs/oapi/v1.HostSubnet.adoc

+3-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ 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><details><summary><span title="(array) EgressIPs is the list of automatic egress IP addresses currently hosted by this node">egressIPs</span>:
22+
</div><details><summary><span title="(array) EgressCIDRs is the list of CIDR ranges available for automatically assigning egress IPs to this node from. If this field is set then EgressIPs should be treated as read-only.">egressCIDRs</span>:
23+
</summary><div style="margin-left:13px;">- <span title="(string)">[string]</span>:
24+
</div></details><details><summary><span title="(array) EgressIPs is the list of automatic egress IP addresses currently hosted by this node. If EgressCIDRs is empty, this can be set by hand; if EgressCIDRs is set then the master will overwrite the value here with its own allocation of egress IPs.">egressIPs</span>:
2325
</summary><div style="margin-left:13px;">- <span title="(string)">[string]</span>:
2426
</div></details><div style="margin-left:13px;"><span title="(string) Host is the name of the node. (This is the same as the object&#39;s name, but both fields must be set.)">host</span>:
2527
</div><div style="margin-left:13px;"><span title="(string) HostIP is the IP address to be used as a VTEP by other nodes in the overlay network">hostIP</span>:

api/protobuf-spec/github_com_openshift_api_network_v1.proto

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

api/swagger-spec/oapi-v1.json

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

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

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

glide.lock

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

pkg/network/apis/network/types.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ type HostSubnet struct {
5151
HostIP string
5252
Subnet string
5353

54-
EgressIPs []string
54+
EgressIPs []string
55+
EgressCIDRs []string
5556
}
5657

5758
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

pkg/network/apis/network/v1/zz_generated.conversion.go

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

pkg/network/apis/network/validation/validation.go

+6
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,12 @@ func ValidateHostSubnet(hs *networkapi.HostSubnet) field.ErrorList {
174174
}
175175
}
176176

177+
for i, egressCIDR := range hs.EgressCIDRs {
178+
if _, err := validateCIDRv4(egressCIDR); err != nil {
179+
allErrs = append(allErrs, field.Invalid(field.NewPath("egressCIDRs").Index(i), egressCIDR, err.Error()))
180+
}
181+
}
182+
177183
return allErrs
178184
}
179185

pkg/network/apis/network/validation/validation_test.go

+33
Original file line numberDiff line numberDiff line change
@@ -405,6 +405,39 @@ func TestValidateHostSubnet(t *testing.T) {
405405
},
406406
expectedErrors: 2,
407407
},
408+
{
409+
name: "Good one with EgressCIDRs",
410+
hs: &networkapi.HostSubnet{
411+
ObjectMeta: metav1.ObjectMeta{
412+
Name: "abc.def.com",
413+
},
414+
Host: "abc.def.com",
415+
HostIP: "10.20.30.40",
416+
Subnet: "8.8.8.0/24",
417+
EgressCIDRs: []string{
418+
"192.168.1.99/32",
419+
"192.168.2.0/24",
420+
},
421+
},
422+
expectedErrors: 0,
423+
},
424+
{
425+
name: "Malformed EgressCIDRs",
426+
hs: &networkapi.HostSubnet{
427+
ObjectMeta: metav1.ObjectMeta{
428+
Name: "abc.def.com",
429+
},
430+
Host: "abc.def.com",
431+
HostIP: "10.20.30.40",
432+
Subnet: "8.8.8.0/24",
433+
EgressCIDRs: []string{
434+
"192.168.1.99",
435+
"bob/32",
436+
"1234::5678/64",
437+
},
438+
},
439+
expectedErrors: 3,
440+
},
408441
{
409442
name: "IPv6 subnet",
410443
hs: &networkapi.HostSubnet{

pkg/network/apis/network/zz_generated.deepcopy.go

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

0 commit comments

Comments
 (0)