Skip to content

Commit

Permalink
Merge pull request #4572 from brendandburns/hostPort
Browse files Browse the repository at this point in the history
Remove hostPort from several tests.
  • Loading branch information
yujuhong committed Feb 19, 2015
2 parents 64d2dc7 + c83c571 commit 48ff578
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/e2e/pods.go
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ var _ = Describe("Pods", func() {
{
Name: "nginx",
Image: "dockerfile/nginx",
Ports: []api.Port{{ContainerPort: 80, HostPort: 8080}},
Ports: []api.Port{{ContainerPort: 80}},
LivenessProbe: &api.Probe{
Handler: api.Handler{
HTTPGet: &api.HTTPGetAction{
Expand Down Expand Up @@ -238,7 +238,7 @@ var _ = Describe("Pods", func() {
{
Name: "srv",
Image: "kubernetes/serve_hostname",
Ports: []api.Port{{ContainerPort: 9376, HostPort: 8080}},
Ports: []api.Port{{ContainerPort: 9376}},
},
},
},
Expand Down

0 comments on commit 48ff578

Please sign in to comment.