From 795e5b4d865d111cd47c3a45f6ab86f4ad12c169 Mon Sep 17 00:00:00 2001 From: "Dr. Stefan Schimanski" Date: Mon, 22 Jun 2015 19:48:48 +0200 Subject: [PATCH] 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. --- test/e2e/service.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/service.go b/test/e2e/service.go index 270cee9139c..ec11980b35c 100644 --- a/test/e2e/service.go +++ b/test/e2e/service.go @@ -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