mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-30 23:15:14 +00:00
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:
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
Block a user