e2e: Use fully qualified image name for centos:8

CRI-O 1.34+ enforces short name mode by default, which refuses
to pull images with unqualified names like 'centos:8' because they
are ambiguous.

Use the full image quay.io/centos/centos:8

Fixes #1471

Signed-off-by: Ram Lavi <ralavi@redhat.com>
This commit is contained in:
Ram Lavi
2026-01-21 22:47:09 +02:00
parent bbf13af3d5
commit b501ee80b9
3 changed files with 5 additions and 5 deletions

View File

@@ -32,7 +32,7 @@ metadata:
spec:
containers:
- name: default-route-worker1
image: centos:8
image: quay.io/centos/centos:8
command: ["/bin/sleep", "10000"]
securityContext:
privileged: true
@@ -51,7 +51,7 @@ metadata:
spec:
containers:
- name: default-route-worker2
image: centos:8
image: quay.io/centos/centos:8
command: ["/bin/sleep", "10000"]
securityContext:
privileged: true

View File

@@ -34,7 +34,7 @@ metadata:
spec:
containers:
- name: macvlan-worker1
image: centos:8
image: quay.io/centos/centos:8
command: ["/bin/sleep", "10000"]
securityContext:
privileged: true
@@ -55,7 +55,7 @@ metadata:
spec:
containers:
- name: macvlan-worker2
image: centos:8
image: quay.io/centos/centos:8
command: ["/bin/sleep", "10000"]
securityContext:
privileged: true

View File

@@ -9,7 +9,7 @@ metadata:
spec:
containers:
- name: simple-centos1
image: centos:8
image: quay.io/centos/centos:8
command: ["/bin/sleep", "10000"]
securityContext:
privileged: true