Fix default service node port range in e2e test
While the command line parameter --service-node-port-range is inclusive, the actual data structure is exclusive.
This commit is contained in:
@@ -36,7 +36,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
// This should match whatever the default/configured range is
|
// This should match whatever the default/configured range is
|
||||||
var ServiceNodePortRange = util.PortRange{Base: 30000, Size: 2767}
|
var ServiceNodePortRange = util.PortRange{Base: 30000, Size: 2768}
|
||||||
|
|
||||||
var _ = Describe("Services", func() {
|
var _ = Describe("Services", func() {
|
||||||
var c *client.Client
|
var c *client.Client
|
||||||
|
Reference in New Issue
Block a user