Skip to content

Commit 49dbe70

Browse files
authored
Merge pull request #835 from ckyrouac/lbi-test-fix
lbi: Switch to unauthenticated ubi9 for lbi test
2 parents 1fed189 + e04955c commit 49dbe70

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tests/booted/test-logically-bound-install.nu

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ print "IMAGES:"
66
podman --storage-opt=additionalimagestore=/usr/lib/bootc/storage images # for debugging
77
assert ($images | any {|item| $item.column1 == "quay.io/curl/curl"})
88
assert ($images | any {|item| $item.column1 == "quay.io/curl/curl-base"})
9-
assert ($images | any {|item| $item.column1 == "registry.redhat.io/ubi9/podman"}) # this image is signed
9+
assert ($images | any {|item| $item.column1 == "registry.access.redhat.com/ubi9/podman:latest"}) # this image is signed
1010

1111
tap ok
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[Image]
2-
Image=registry.redhat.io/ubi9/podman:latest
2+
Image=registry.access.redhat.com/ubi9/podman:latest

xtask/src/xtask.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const NAME: &str = "bootc";
1414
const TEST_IMAGES: &[&str] = &[
1515
"quay.io/curl/curl-base:latest",
1616
"quay.io/curl/curl:latest",
17-
"registry.redhat.io/ubi9/podman:latest",
17+
"registry.access.redhat.com/ubi9/podman:latest",
1818
];
1919

2020
fn main() {

0 commit comments

Comments
 (0)