mirror of https://github.com/k3s-io/k3s
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.pull/6/head
parent
ebeb104493
commit
795e5b4d86
|
@ -36,7 +36,7 @@ import (
|
|||
)
|
||||
|
||||
// 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 c *client.Client
|
||||
|
|
Loading…
Reference in New Issue