Skip to content

Commit

Permalink
Updates E2E test images registry (kubernetes#7704)
Browse files Browse the repository at this point in the history
We're moving away from google.com gcp projects. These images are now on community-owned infra.
  • Loading branch information
claudiubelu authored Sep 27, 2021
1 parent 7a1d06f commit c0f6103
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/examples/chashsubset/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spec:
spec:
containers:
- name: nginxhello
image: gcr.io/kubernetes-e2e-test-images/echoserver:2.2
image: k8s.gcr.io/e2e-test-images/echoserver:2.3
ports:
- containerPort: 8080
env:
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/http-svc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ spec:
spec:
containers:
- name: http-svc
image: gcr.io/kubernetes-e2e-test-images/echoserver:2.1
image: k8s.gcr.io/e2e-test-images/echoserver:2.3
ports:
- containerPort: 8080
env:
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/multi-tls/multi-tls.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ spec:
spec:
containers:
- name: http-svc
image: gcr.io/kubernetes-e2e-test-images/echoserver:2.1
image: k8s.gcr.io/e2e-test-images/echoserver:2.3
ports:
- containerPort: 8080
env:
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/annotations/canary.go
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ var _ = framework.DescribeAnnotation("canary-*", func() {
ginkgo.By("returning a 200 status when the canary deployment has 0 replicas and a request is sent to the mainline ingress")
f.NewEchoDeploymentWithReplicas(1)
f.NewDeployment(canaryService, "gcr.io/kubernetes-e2e-test-images/echoserver:2.2", 8080, 0)
f.NewDeployment(canaryService, "k8s.gcr.io/e2e-test-images/echoserver:2.3", 8080, 0)
resp, _, errs = gorequest.New().
Get(f.GetURL(framework.HTTP)).
Expand Down

0 comments on commit c0f6103

Please sign in to comment.