From c0f61039e47ca021c8c5432d7a7686fca4807a7f Mon Sep 17 00:00:00 2001 From: Claudiu Belu <1552519+claudiubelu@users.noreply.github.com> Date: Mon, 27 Sep 2021 15:42:18 +0300 Subject: [PATCH] Updates E2E test images registry (#7704) We're moving away from google.com gcp projects. These images are now on community-owned infra. --- docs/examples/chashsubset/deployment.yaml | 2 +- docs/examples/http-svc.yaml | 2 +- docs/examples/multi-tls/multi-tls.yaml | 2 +- test/e2e/annotations/canary.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/examples/chashsubset/deployment.yaml b/docs/examples/chashsubset/deployment.yaml index 82fdc7ac0..24a41dcc2 100644 --- a/docs/examples/chashsubset/deployment.yaml +++ b/docs/examples/chashsubset/deployment.yaml @@ -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: diff --git a/docs/examples/http-svc.yaml b/docs/examples/http-svc.yaml index bd2b34ce9..4e8426897 100644 --- a/docs/examples/http-svc.yaml +++ b/docs/examples/http-svc.yaml @@ -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: diff --git a/docs/examples/multi-tls/multi-tls.yaml b/docs/examples/multi-tls/multi-tls.yaml index 32f5932c1..b3985439e 100644 --- a/docs/examples/multi-tls/multi-tls.yaml +++ b/docs/examples/multi-tls/multi-tls.yaml @@ -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: diff --git a/test/e2e/annotations/canary.go b/test/e2e/annotations/canary.go index 07b307abb..d189c972d 100644 --- a/test/e2e/annotations/canary.go +++ b/test/e2e/annotations/canary.go @@ -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)).