Skip to content

Commit 1ae6e4c

Browse files
committed
update curl container image registry to quay.io
1 parent ce8a4e9 commit 1ae6e4c

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

test/e2e/v4/plugin_cluster_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -573,13 +573,13 @@ func cmdOptsToCreateCurlPod(kbc *utils.TestContext, token string) []string {
573573
"run", "curl",
574574
"--restart=Never",
575575
"--namespace", kbc.Kubectl.Namespace,
576-
"--image=curlimages/curl:latest",
576+
"--image=quay.io/curl/curl:latest",
577577
"--overrides",
578578
fmt.Sprintf(`{
579579
"spec": {
580580
"containers": [{
581581
"name": "curl",
582-
"image": "curlimages/curl:latest",
582+
"image": "quay.io/curl/curl:latest",
583583
"command": ["/bin/sh", "-c"],
584584
"args": ["curl -v -k -H 'Authorization: Bearer %s' https://e2e-%s-controller-manager-metrics-service.%s.svc.cluster.local:8443/metrics"],
585585
"securityContext": {

testdata/project-v4-multigroup/test/e2e/e2e_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -211,13 +211,13 @@ var _ = Describe("Manager", Ordered, func() {
211211
By("creating the curl-metrics pod to access the metrics endpoint")
212212
cmd = exec.Command("kubectl", "run", "curl-metrics", "--restart=Never",
213213
"--namespace", namespace,
214-
"--image=curlimages/curl:latest",
214+
"--image=quay.io/curl/curl:latest",
215215
"--overrides",
216216
fmt.Sprintf(`{
217217
"spec": {
218218
"containers": [{
219219
"name": "curl",
220-
"image": "curlimages/curl:latest",
220+
"image": "quay.io/curl/curl:latest",
221221
"command": ["/bin/sh", "-c"],
222222
"args": ["curl -v -k -H 'Authorization: Bearer %s' https://%s.%s.svc.cluster.local:8443/metrics"],
223223
"securityContext": {

testdata/project-v4-with-plugins/test/e2e/e2e_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -211,13 +211,13 @@ var _ = Describe("Manager", Ordered, func() {
211211
By("creating the curl-metrics pod to access the metrics endpoint")
212212
cmd = exec.Command("kubectl", "run", "curl-metrics", "--restart=Never",
213213
"--namespace", namespace,
214-
"--image=curlimages/curl:latest",
214+
"--image=quay.io/curl/curl:latest",
215215
"--overrides",
216216
fmt.Sprintf(`{
217217
"spec": {
218218
"containers": [{
219219
"name": "curl",
220-
"image": "curlimages/curl:latest",
220+
"image": "quay.io/curl/curl:latest",
221221
"command": ["/bin/sh", "-c"],
222222
"args": ["curl -v -k -H 'Authorization: Bearer %s' https://%s.%s.svc.cluster.local:8443/metrics"],
223223
"securityContext": {

testdata/project-v4/test/e2e/e2e_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -211,13 +211,13 @@ var _ = Describe("Manager", Ordered, func() {
211211
By("creating the curl-metrics pod to access the metrics endpoint")
212212
cmd = exec.Command("kubectl", "run", "curl-metrics", "--restart=Never",
213213
"--namespace", namespace,
214-
"--image=curlimages/curl:latest",
214+
"--image=quay.io/curl/curl:latest",
215215
"--overrides",
216216
fmt.Sprintf(`{
217217
"spec": {
218218
"containers": [{
219219
"name": "curl",
220-
"image": "curlimages/curl:latest",
220+
"image": "quay.io/curl/curl:latest",
221221
"command": ["/bin/sh", "-c"],
222222
"args": ["curl -v -k -H 'Authorization: Bearer %s' https://%s.%s.svc.cluster.local:8443/metrics"],
223223
"securityContext": {

0 commit comments

Comments
 (0)