Skip to content
This repository has been archived by the owner on May 28, 2024. It is now read-only.

test: switch to use downstream bib for downstream test #260

Merged
merged 1 commit into from
Apr 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion bib-image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@ if [[ ${TIER1_IMAGE_URL} =~ bootc-image-builder ]]; then
BIB_IMAGE_URL=$TIER1_IMAGE_URL
TIER1_IMAGE_URL=${RHEL_REGISTRY_URL}/rhel9-rhel_bootc:rhel-${VERSION}
else
BIB_IMAGE_URL="${BIB_IMAGE_URL:-quay.io/centos-bootc/bootc-image-builder:latest}"
if [[ "$REDHAT_ID" == "rhel" ]]; then
BIB_IMAGE_URL="${BIB_IMAGE_URL:-${RHEL_REGISTRY_URL}/rhel9-rhel_bootc-image-builder:rhel-${REDHAT_VERSION_ID}}"
else
BIB_IMAGE_URL="${BIB_IMAGE_URL:-quay.io/centos-bootc/bootc-image-builder:latest}"
fi
fi
LAYERED_IMAGE="${LAYERED_IMAGE-cloud-init}"
LAYERED_DIR="examples/$LAYERED_IMAGE"
Expand Down