From 1a2da5b8f56914bd0157ab9a489b4b4a83ad7b54 Mon Sep 17 00:00:00 2001 From: Eric Tune Date: Wed, 11 Mar 2015 15:30:56 -0700 Subject: [PATCH] Don't use hostPort in integration test. The integration test will fail if I check in my pending PR to remove boundPods. Kubernetes eventually does the right thing, but getting the integration test to check expectations is hard because the scheduling behavior is unpredictable. The boundPods removal is needed to fix P1 bug and speeds up the scheduler considerably. --- cmd/integration/controller.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/integration/controller.json b/cmd/integration/controller.json index 03910e88c5d..c2f871dfd26 100644 --- a/cmd/integration/controller.json +++ b/cmd/integration/controller.json @@ -13,7 +13,7 @@ "containers": [{ "name": "nginx", "image": "dockerfile/nginx", - "ports": [{"containerPort": 80, "hostPort": 8080}] + "ports": [{"containerPort": 80}] }] } },