Skip to content

Commit 6bdb8c2

Browse files
authored
ci(e2e): add explicit docker.io registry prefix (cloudnative-pg#9872)
Latest cri-o versions in OpenShift 4.21 require explicit registry prefixes for all container images. Updated minio/minio, minio/mc, wallnerryan/fiotools-aio, and httpd images to include the docker.io prefix. Signed-off-by: Marco Nenciarini <marco.nenciarini@enterprisedb.com>
1 parent 6954885 commit 6bdb8c2

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

internal/cmd/plugin/fio/fio.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ type fioCommand struct {
4545

4646
const (
4747
fioKeyWord = "fio"
48-
fioImage = "wallnerryan/fiotools-aio:v2"
48+
fioImage = "docker.io/wallnerryan/fiotools-aio:v2"
4949
)
5050

5151
var jobExample = `

tests/e2e/fixtures/fastfailover/apache-benchmark-webtest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ spec:
77
spec:
88
containers:
99
- name: apache-benchmark
10-
image: httpd
10+
image: docker.io/httpd:latest
1111
command:
1212
- "/usr/local/apache2/bin/ab"
1313
- "-t"

tests/e2e/fixtures/fastswitchover/apache-benchmark-webtest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ spec:
77
spec:
88
containers:
99
- name: apache-benchmark
10-
image: httpd
10+
image: docker.io/httpd:latest
1111
command:
1212
- "/usr/local/apache2/bin/ab"
1313
- "-t"

tests/utils/minio/minio.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ import (
5050

5151
const (
5252
// minioImage is the image used to run a MinIO server
53-
minioImage = "minio/minio:RELEASE.2025-09-07T16-13-09Z"
53+
minioImage = "docker.io/minio/minio:RELEASE.2025-09-07T16-13-09Z"
5454
// minioClientImage is the image used to run a MinIO client
55-
minioClientImage = "minio/mc:RELEASE.2025-08-13T08-35-41Z"
55+
minioClientImage = "docker.io/minio/mc:RELEASE.2025-08-13T08-35-41Z"
5656
)
5757

5858
// Env contains all the information related or required by MinIO deployment and

0 commit comments

Comments
 (0)