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
Dr. Stefan Schimanski 2015-06-22 19:48:48 +02:00
parent ebeb104493
commit 795e5b4d86
1 changed files with 1 additions and 1 deletions

View File

@ -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