From e04955c5c184be661633623a1601c716f0d0f3b5 Mon Sep 17 00:00:00 2001 From: Chris Kyrouac Date: Wed, 16 Oct 2024 16:15:15 -0400 Subject: [PATCH] lbi: Switch to unauthenticated ubi9 for lbi test This way we don't need to add any credentials to github. Signed-off-by: Chris Kyrouac --- tests/booted/test-logically-bound-install.nu | 2 +- .../lbi/usr/share/containers/systemd/podman.image | 2 +- xtask/src/xtask.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/booted/test-logically-bound-install.nu b/tests/booted/test-logically-bound-install.nu index bebdb6bbb..136f52afc 100644 --- a/tests/booted/test-logically-bound-install.nu +++ b/tests/booted/test-logically-bound-install.nu @@ -6,6 +6,6 @@ print "IMAGES:" podman --storage-opt=additionalimagestore=/usr/lib/bootc/storage images # for debugging assert ($images | any {|item| $item.column1 == "quay.io/curl/curl"}) assert ($images | any {|item| $item.column1 == "quay.io/curl/curl-base"}) -assert ($images | any {|item| $item.column1 == "registry.redhat.io/ubi9/podman"}) # this image is signed +assert ($images | any {|item| $item.column1 == "registry.access.redhat.com/ubi9/podman:latest"}) # this image is signed tap ok diff --git a/tests/containerfiles/lbi/usr/share/containers/systemd/podman.image b/tests/containerfiles/lbi/usr/share/containers/systemd/podman.image index 77b5db6ed..cb37cc613 100644 --- a/tests/containerfiles/lbi/usr/share/containers/systemd/podman.image +++ b/tests/containerfiles/lbi/usr/share/containers/systemd/podman.image @@ -1,2 +1,2 @@ [Image] -Image=registry.redhat.io/ubi9/podman:latest +Image=registry.access.redhat.com/ubi9/podman:latest diff --git a/xtask/src/xtask.rs b/xtask/src/xtask.rs index 10f77e967..9525c1dbc 100644 --- a/xtask/src/xtask.rs +++ b/xtask/src/xtask.rs @@ -14,7 +14,7 @@ const NAME: &str = "bootc"; const TEST_IMAGES: &[&str] = &[ "quay.io/curl/curl-base:latest", "quay.io/curl/curl:latest", - "registry.redhat.io/ubi9/podman:latest", + "registry.access.redhat.com/ubi9/podman:latest", ]; fn main() {