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.
This commit is contained in:
Eric Tune 2015-03-11 15:30:56 -07:00
parent 56d365bdd8
commit 1a2da5b8f5

View File

@ -13,7 +13,7 @@
"containers": [{
"name": "nginx",
"image": "dockerfile/nginx",
"ports": [{"containerPort": 80, "hostPort": 8080}]
"ports": [{"containerPort": 80}]
}]
}
},