Skip to content

Commit

Permalink
Use an up-to-date nginx image for e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
j3ffml committed Apr 2, 2015
1 parent c25a1be commit 7abcba9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions test/e2e/pods.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ var _ = Describe("Pods", func() {
Containers: []api.Container{
{
Name: "nginx",
Image: "gcr.io/google_containers/nginx",
Image: "gcr.io/google_containers/nginx:1.7.9",
Ports: []api.ContainerPort{{ContainerPort: 80}},
LivenessProbe: &api.Probe{
Handler: api.Handler{
Expand Down Expand Up @@ -207,7 +207,7 @@ var _ = Describe("Pods", func() {
Containers: []api.Container{
{
Name: "nginx",
Image: "gcr.io/google_containers/nginx",
Image: "gcr.io/google_containers/nginx:1.7.9",
Ports: []api.ContainerPort{{ContainerPort: 80}},
LivenessProbe: &api.Probe{
Handler: api.Handler{
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ var _ = Describe("Services", func() {
},
}

By("submitting the pod to kuberenetes")
By("submitting the pod to kubernetes")
defer func() {
By("deleting the pod")
defer GinkgoRecover()
Expand Down

0 comments on commit 7abcba9

Please sign in to comment.