From 2b97b47c17e11ab56ce51650ac04552c00c2c480 Mon Sep 17 00:00:00 2001 From: Todd Short Date: Wed, 24 Sep 2025 22:22:16 -0400 Subject: [PATCH] Use long name for curl image The short name was causing downstream issues: ``` image name curlimages/curl:8.15.0 returns ambiguous list ``` Using the long name seems to fix this. Signed-off-by: Todd Short --- test/e2e/metrics_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/e2e/metrics_test.go b/test/e2e/metrics_test.go index a95f16c2c3..e41827987d 100644 --- a/test/e2e/metrics_test.go +++ b/test/e2e/metrics_test.go @@ -129,7 +129,7 @@ func (c *MetricsTestConfig) getServiceAccountToken(t *testing.T) string { func (c *MetricsTestConfig) createCurlMetricsPod(t *testing.T) { t.Logf("Creating curl pod (%s/%s) to validate the metrics endpoint", c.namespace, c.curlPodName) cmd := exec.Command(c.client, "run", c.curlPodName, - "--image=curlimages/curl:8.15.0", + "--image=quay.io/curl/curl:8.15.0", "--namespace", c.namespace, "--restart=Never", "--overrides", `{ @@ -137,7 +137,7 @@ func (c *MetricsTestConfig) createCurlMetricsPod(t *testing.T) { "terminationGradePeriodSeconds": 0, "containers": [{ "name": "curl", - "image": "curlimages/curl:8.15.0", + "image": "quay.io/curl/curl:8.15.0", "command": ["sh", "-c", "sleep 3600"], "securityContext": { "allowPrivilegeEscalation": false,