Skip to content

Commit

Permalink
Merge pull request #835 from ckyrouac/lbi-test-fix
Browse files Browse the repository at this point in the history
lbi: Switch to unauthenticated ubi9 for lbi test
  • Loading branch information
cgwalters authored Oct 16, 2024
2 parents 1fed189 + e04955c commit 49dbe70
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/booted/test-logically-bound-install.nu
Original file line number Diff line number Diff line change
Expand Up @@ -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
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[Image]
Image=registry.redhat.io/ubi9/podman:latest
Image=registry.access.redhat.com/ubi9/podman:latest
2 changes: 1 addition & 1 deletion xtask/src/xtask.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit 49dbe70

Please sign in to comment.