Skip to content

Commit 55d9dfb

Browse files
authored
Use long name for curl image (#2235)
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 <[email protected]>
1 parent 102383e commit 55d9dfb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/e2e/metrics_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,15 +129,15 @@ func (c *MetricsTestConfig) getServiceAccountToken(t *testing.T) string {
129129
func (c *MetricsTestConfig) createCurlMetricsPod(t *testing.T) {
130130
t.Logf("Creating curl pod (%s/%s) to validate the metrics endpoint", c.namespace, c.curlPodName)
131131
cmd := exec.Command(c.client, "run", c.curlPodName,
132-
"--image=curlimages/curl:8.15.0",
132+
"--image=quay.io/curl/curl:8.15.0",
133133
"--namespace", c.namespace,
134134
"--restart=Never",
135135
"--overrides", `{
136136
"spec": {
137137
"terminationGradePeriodSeconds": 0,
138138
"containers": [{
139139
"name": "curl",
140-
"image": "curlimages/curl:8.15.0",
140+
"image": "quay.io/curl/curl:8.15.0",
141141
"command": ["sh", "-c", "sleep 3600"],
142142
"securityContext": {
143143
"allowPrivilegeEscalation": false,

0 commit comments

Comments
 (0)