From ed71f702dda6d342b15b4fc8ff92f853e96b5f89 Mon Sep 17 00:00:00 2001 From: Ram Lavi Date: Wed, 21 Jan 2026 22:53:14 +0200 Subject: [PATCH] e2e: Use fully qualified image name for ubuntu:22.04 CRI-O 1.34+ enforces short name mode by default, which refuses to pull images with unqualified names like 'ubuntu:22.04' because they are ambiguous. Use the full image docker.io/library/ubuntu:22.04 Fixes #1471 Signed-off-by: Ram Lavi --- e2e/templates/dra-integration.yml.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/templates/dra-integration.yml.j2 b/e2e/templates/dra-integration.yml.j2 index e1d6f7a36..c401ebb42 100644 --- a/e2e/templates/dra-integration.yml.j2 +++ b/e2e/templates/dra-integration.yml.j2 @@ -40,7 +40,7 @@ metadata: spec: containers: - name: ctr0 - image: ubuntu:22.04 + image: docker.io/library/ubuntu:22.04 command: ["bash", "-c"] args: ["export; sleep 9999"] resources: