[use-trusted-artifact] Using token for quay.io/opendatahub/kserve [use-trusted-artifact] Executing: oras blob fetch --registry-config /tmp/use-oci.sh.TZSgbH/auth-o9tDpN.json quay.io/opendatahub/kserve@sha256:6a282f11b5c5e33d38a58a7454d1e7ba866b9defb70f3c2dd043523f12dde885 --output - [use-trusted-artifact] Restored artifact quay.io/opendatahub/kserve@sha256:6a282f11b5c5e33d38a58a7454d1e7ba866b9defb70f3c2dd043523f12dde885 to /var/workdir/source [use-trusted-artifact] WARN: artifact URI not provided, (given: =/var/workdir/cachi2) [use-trusted-artifact] Command being timed: "/usr/local/bin/use-archive oci:quay.io/opendatahub/kserve@sha256:6a282f11b5c5e33d38a58a7454d1e7ba866b9defb70f3c2dd043523f12dde885=/var/workdir/source =/var/workdir/cachi2" [use-trusted-artifact] User time (seconds): 2.07 [use-trusted-artifact] System time (seconds): 1.30 [use-trusted-artifact] Percent of CPU this job got: 107% [use-trusted-artifact] Elapsed (wall clock) time (h:mm:ss or m:ss): 0:03.15 [use-trusted-artifact] Average shared text size (kbytes): 0 [use-trusted-artifact] Average unshared data size (kbytes): 0 [use-trusted-artifact] Average stack size (kbytes): 0 [use-trusted-artifact] Average total size (kbytes): 0 [use-trusted-artifact] Maximum resident set size (kbytes): 22052 [use-trusted-artifact] Average resident set size (kbytes): 0 [use-trusted-artifact] Major (requiring I/O) page faults: 0 [use-trusted-artifact] Minor (reclaiming a frame) page faults: 4607 [use-trusted-artifact] Voluntary context switches: 39165 [use-trusted-artifact] Involuntary context switches: 51 [use-trusted-artifact] Swaps: 0 [use-trusted-artifact] File system inputs: 0 [use-trusted-artifact] File system outputs: 1034232 [use-trusted-artifact] Socket messages sent: 0 [use-trusted-artifact] Socket messages received: 0 [use-trusted-artifact] Signals delivered: 0 [use-trusted-artifact] Page size (bytes): 4096 [use-trusted-artifact] Exit status: 0 [build] [build] echo "[$(date --utc -Ins)] Prepare connection" [build] [2026-09-18T16:22:18,669900453+00:00] Prepare connection [build] [build] mkdir -p ~/.ssh [build] if [ -e "/ssh/error" ]; then [build] #no server could be provisioned [build] cat /ssh/error [build] exit 1 [build] fi [build] [build] SSH_HOST=$(cat /ssh/host) [build] export SSH_HOST [build] [build] if [ "$SSH_HOST" == "localhost" ] ; then [build] IS_LOCALHOST=true [build] echo "Localhost detected; running build in cluster" [build] elif [ -e "/ssh/otp" ]; then [build] if ! curl --fail --cacert /ssh/otp-ca -XPOST -d @/ssh/otp "$(cat /ssh/otp-server)" >~/.ssh/id_rsa; then [build] echo "Failed to retrieve SSH key from the OTP server. This can happen when the PipelineRun retry option re-runs a task whose one-time credential was already consumed. Please, start a new build, and if problem persists, please report it as an MPC bug." >&2 [build] exit 1 [build] fi [build] echo "" >> ~/.ssh/id_rsa [build] else [build] cp /ssh/id_rsa ~/.ssh [build] fi [build] Localhost detected; running build in cluster [build] [build] mkdir -p scripts [build] [build] if ! [[ $IS_LOCALHOST ]]; then [build] echo "[$(date --utc -Ins)] Setup VM" [build] [build] if [[ "$BUILDAH_HTTP_PROXY" =~ .+\.cluster\.local ]]; then [build] echo "[$(date --utc -Ins)] Ignoring cluster local proxy for remote build" [build] unset BUILDAH_HTTP_PROXY BUILDAH_NO_PROXY [build] fi [build] [build] chmod 0400 ~/.ssh/id_rsa [build] BUILD_DIR=$(cat /ssh/user-dir) [build] export BUILD_DIR [build] export SSH_ARGS="-o StrictHostKeyChecking=no -o ServerAliveInterval=60 -o ServerAliveCountMax=10" [build] echo "$BUILD_DIR" [build] # shellcheck disable=SC2086 [build] ssh $SSH_ARGS "$SSH_HOST" mkdir -p "${BUILD_DIR@Q}/workspaces" "${BUILD_DIR@Q}/scripts" "${BUILD_DIR@Q}/volumes" [build] [build] PORT_FORWARD="" [build] PODMAN_PORT_FORWARD="" [build] if [ -n "$JVM_BUILD_WORKSPACE_ARTIFACT_CACHE_PORT_80_TCP_ADDR" ] ; then [build] PORT_FORWARD=" -L 80:$JVM_BUILD_WORKSPACE_ARTIFACT_CACHE_PORT_80_TCP_ADDR:80" [build] PODMAN_PORT_FORWARD=" -e JVM_BUILD_WORKSPACE_ARTIFACT_CACHE_PORT_80_TCP_ADDR=localhost" [build] fi [build] [build] echo "[$(date --utc -Ins)] Rsync data" [build] [build] rsync -razW /shared/ "$SSH_HOST:$BUILD_DIR/volumes/shared/" [build] rsync -razW /var/workdir/ "$SSH_HOST:$BUILD_DIR/volumes/workdir/" [build] rsync -razW /entitlement/ "$SSH_HOST:$BUILD_DIR/volumes/etc-pki-entitlement/" [build] rsync -razW /activation-key/ "$SSH_HOST:$BUILD_DIR/volumes/activation-key/" [build] rsync -razW /additional-secret/ "$SSH_HOST:$BUILD_DIR/volumes/additional-secret/" [build] rsync -razW /mnt/trusted-ca/ "$SSH_HOST:$BUILD_DIR/volumes/trusted-ca/" [build] rsync -razW /mnt/proxy-ca-bundle/ "$SSH_HOST:$BUILD_DIR/volumes/proxy-ca-bundle/" [build] rsync -razW "$HOME/.docker/" "$SSH_HOST:$BUILD_DIR/.docker/" [build] rsync -razW "/tekton/results/" "$SSH_HOST:$BUILD_DIR/results/" [build] fi [build] if [ "${IMAGE_APPEND_PLATFORM}" == "true" ]; then [build] IMAGE="${IMAGE}-${PLATFORM//[^a-zA-Z0-9]/-}" [build] export IMAGE [build] fi [build] [build] cat >scripts/script-build.sh <<'REMOTESSHEOF' [build] #!/bin/bash [build] set -euo pipefail [build] cd /var/workdir [build] [build] ca_bundle=/mnt/trusted-ca/ca-bundle.crt [build] proxy_ca_bundle=/mnt/proxy-ca-bundle/ca-bundle.crt [build] update_ca_trust=false [build] [build] if [ -f "$ca_bundle" ]; then [build] echo "[$(date --utc -Ins)] Using mounted CA bundle: $ca_bundle" [build] cp -vf $ca_bundle /etc/pki/ca-trust/source/anchors/ca-bundle.crt [build] update_ca_trust=true [build] fi [build] [build] if [ -f "$proxy_ca_bundle" ] && [ -n "${BUILDAH_HTTP_PROXY}" ]; then [build] echo "[$(date --utc -Ins)] Using mounted proxy CA bundle: $proxy_ca_bundle" [build] cp -vf $proxy_ca_bundle /etc/pki/ca-trust/source/anchors/proxy-ca-bundle.crt [build] update_ca_trust=true [build] fi [build] [build] if [ "$update_ca_trust" = "true" ]; then [build] echo "[$(date --utc -Ins)] Update CA trust" [build] update-ca-trust [build] fi [build] [build] echo "[$(date --utc -Ins)] Prepare system (architecture: $(uname -m))" [build] [build] # Fixing group permission on /var/lib/containers [build] chown root:root /var/lib/containers [build] [build] sed -i 's/^\s*short-name-mode\s*=\s*.*/short-name-mode = "disabled"/' /etc/containers/registries.conf [build] [build] # Delete policy settings for Red Hat registries to disable signature verification. [build] # TODO: don't do this? [build] container_policy=$( [build] jq '.transports |= ( [build] del(.docker.["registry.access.redhat.com"]) | [build] del(.docker.["registry.redhat.io"]) | [build] if (.docker == {}) then del(.docker) else . end [build] )' /etc/containers/policy.json [build] ) [build] echo "Effective container policy:" [build] printf '%s\n' "$container_policy" | tee /etc/containers/policy.json [build] [build] # Setting new namespace to run buildah - 2^32-2 [build] echo 'root:1:4294967294' | tee -a /etc/subuid >>/etc/subgid [build] [build] echo "[$(date --utc -Ins)] Run the build" [build] [build] if [ -e "$SOURCE_CODE_DIR/$CONTEXT/$DOCKERFILE" ]; then [build] dockerfile_path="$(pwd)/$SOURCE_CODE_DIR/$CONTEXT/$DOCKERFILE" [build] elif [ -e "$SOURCE_CODE_DIR/$DOCKERFILE" ]; then [build] dockerfile_path="$(pwd)/$SOURCE_CODE_DIR/$DOCKERFILE" [build] else [build] echo "Cannot find Dockerfile $DOCKERFILE" [build] exit 1 [build] fi [build] [build] if [ -n "${ANNOTATIONS_FILE}" ] && [ -f "${SOURCE_CODE_DIR}/${ANNOTATIONS_FILE}" ]; then [build] ANNOTATIONS_FILE=$(realpath "${SOURCE_CODE_DIR}/${ANNOTATIONS_FILE}") [build] fi [build] [build] if [ -n "${BUILD_ARGS_FILE}" ]; then [build] BUILD_ARGS_FILE=$(realpath "${SOURCE_CODE_DIR}/${BUILD_ARGS_FILE}") [build] fi [build] [build] # Necessary for newer version of buildah if the host system does not contain up to date version of container-selinux [build] # TODO remove the option once all hosts were updated [build] security_args=(--security-opts unmask=/proc/interrupts) [build] [build] if [ "${PRIVILEGED_NESTED}" == "true" ]; then [build] security_args+=(--security-opts label=disable) [build] security_args+=(--cap-add all) [build] security_args+=(--devices /dev/fuse) [build] fi [build] if [ -n "${ADD_CAPABILITIES}" ]; then [build] security_args+=(--cap-add "${ADD_CAPABILITIES}") [build] fi [build] [build] if [ -f "/var/workdir/cachi2/cachi2.env" ]; then [build] prefetch_dir="/var/workdir/cachi2" [build] # KBC defaults to ${prefetch_dir}/copy-* [build] # Copy to a sibling dir instead in case we don't have write permissions to the prefetch_dir. [build] # It's still on the same filesystem, so copying via reflinks should be possible. [build] prefetch_dir_copy="/var/workdir/prefetch-copy" [build] else [build] prefetch_dir="" [build] prefetch_dir_copy="" [build] fi [build] [build] yum_repos_d_sources=() [build] if [ -d "${YUM_REPOS_D_FETCHED}" ]; then [build] yum_repos_d_sources+=("${YUM_REPOS_D_FETCHED}") [build] fi [build] if [ -d "${SOURCE_CODE_DIR}/${YUM_REPOS_D_SRC}" ]; then [build] yum_repos_d_sources+=("${SOURCE_CODE_DIR}/${YUM_REPOS_D_SRC}") [build] fi [build] [build] # 0. if hermetic=true, skip all subscription related stuff [build] # 1. do not enable activation key and entitlement at same time. If both are provided, prefer activation key. [build] # 2. Activation-keys will be used when the key 'org' exists in the activation key secret. [build] # 3. try to pre-register and mount files to the correct location so that users do no need to modify Dockerfiles. [build] # 4. If the Dockerfile contains the string "subcription-manager register", add the activation-keys volume [build] # to buildah but don't pre-register for backwards compatibility. Mount an empty directory on [build] # to "/etc/pki/entitlement" to prevent certificates from being included [build] rhsm_args=() [build] if [ "${HERMETIC}" != "true" ]; then [build] if [ -e /activation-key/org ]; then [build] rhsm_args+=(--rhsm-activation-key=/activation-key/activationkey [build] --rhsm-org=/activation-key/org [build] --rhsm-activation-mount=/activation-key) [build] [build] if ! grep -E "^[^#]*subscription-manager.[^#]*register" "$dockerfile_path"; then [build] # user is not running registration in the Containerfile: pre-register. [build] rhsm_args+=(--rhsm-activation-preregister) [build] fi [build] elif find /entitlement -name "*.pem" >/dev/null; then [build] rhsm_args+=(--rhsm-entitlements=/entitlement) [build] fi [build] fi [build] if [ "${RHSM_MOUNT_CA_CERTS}" != "auto" ]; then [build] rhsm_args+=(--rhsm-mount-ca-certs="$RHSM_MOUNT_CA_CERTS") [build] fi [build] [build] # Prevent ShellCheck from giving a warning because 'image' is defined and 'IMAGE' is not. [build] declare IMAGE [build] [build] cmd=( [build] konflux-build-cli image build [build] -f "$dockerfile_path" -t "$IMAGE" --source "$SOURCE_CODE_DIR" --context "$CONTEXT" [build] --secret-dirs "src=/additional-secret,name=$ADDITIONAL_SECRET,optional=true" [build] --workdir-mount "$WORKINGDIR_MOUNT" [build] --target "$TARGET_STAGE" [build] --inherit-labels="$INHERIT_BASE_IMAGE_LABELS" [build] --source-date-epoch "$BUILDAH_SOURCE_DATE_EPOCH" [build] --rewrite-timestamp="$BUILDAH_REWRITE_TIMESTAMP" [build] --squash="$SQUASH" [build] --omit-history="$BUILDAH_OMIT_HISTORY" [build] --image-source "$SOURCE_URL" [build] --image-revision "$COMMIT_SHA" [build] --quay-image-expires-after "$IMAGE_EXPIRES_AFTER" [build] --build-args-file "$BUILD_ARGS_FILE" [build] --annotations-file "$ANNOTATIONS_FILE" [build] --legacy-build-timestamp "$BUILD_TIMESTAMP" [build] --add-legacy-labels [build] --include-legacy-buildinfo-path="$ICM_KEEP_COMPAT_LOCATION" [build] --skip-injections="$SKIP_INJECTIONS" [build] --skip-unused-stages="$SKIP_UNUSED_STAGES" [build] --hermetic="$HERMETIC" [build] --image-pull-proxy "$BUILDAH_HTTP_PROXY" [build] --image-pull-noproxy "$BUILDAH_NO_PROXY" [build] --yum-repos-d-sources "${yum_repos_d_sources[@]}" [build] --yum-repos-d-target "$YUM_REPOS_D_TARGET" [build] --prefetch-dir "$prefetch_dir" [build] --prefetch-dir-copy "$prefetch_dir_copy" [build] --prefetch-env-mount /cachi2/cachi2.env [build] --prefetch-output-mount /cachi2/output [build] "${security_args[@]}" [build] "${rhsm_args[@]}" [build] --containerfile-json-output /shared/parsed_dockerfile.json [build] --resolved-base-images-output /shared/base_images_digests [build] --no-cache [build] --ulimits nofile=4096:4096 [build] --src-tls-verify="$TLSVERIFY" [build] --dest-tls-verify="$TLSVERIFY" [build] --allow-cross-platform-images="$ALLOW_CROSS_PLATFORM_IMAGES" [build] "$@" # --annotations, --labels, --envs, --build-args [build] ) [build] [build] echo "[$(date --utc -Ins)] $(printf '%q ' "${cmd[@]}")" [build] [build] "${cmd[@]}" [build] [build] echo "[$(date --utc -Ins)] Add metadata" [build] [build] # Save the SBOM produced in prefetch so it can be merged into the final SBOM later [build] if [ -f "${prefetch_dir}/output/bom.json" ]; then [build] echo "Making copy of sbom-prefetch.json" [build] cp "${prefetch_dir}/output/bom.json" ./sbom-prefetch.json [build] fi [build] [build] image_name=$(echo "${IMAGE##*/}" | tr ':' '-') [build] buildah push "$IMAGE" oci:"/shared/$image_name.oci:$IMAGE" [build] echo "/shared/$image_name.oci" >/shared/container_path [build] [build] echo "[$(date --utc -Ins)] End build" [build] [build] REMOTESSHEOF [build] chmod +x scripts/script-build.sh [build] [build] PODMAN_NVIDIA_ARGS=() [build] if [[ "$PLATFORM" == "linux-g"* ]]; then [build] PODMAN_NVIDIA_ARGS+=("--device=nvidia.com/gpu=all" "--security-opt=label=disable") [build] fi [build] [build] if ! [[ $IS_LOCALHOST ]]; then [build] PRIVILEGED_NESTED_FLAGS=() [build] if [[ "${PRIVILEGED_NESTED}" == "true" ]]; then [build] # This is a workaround for building bootc images because the cache filesystem (/var/tmp/ on the host) must be a real filesystem that supports setting SELinux security attributes. [build] # https://github.com/coreos/rpm-ostree/discussions/4648 [build] # shellcheck disable=SC2086 [build] ssh $SSH_ARGS "$SSH_HOST" mkdir -p "${BUILD_DIR@Q}/var/tmp" [build] PRIVILEGED_NESTED_FLAGS=(--privileged --mount "type=bind,source=$BUILD_DIR/var/tmp,target=/var/tmp,relabel=shared") [build] fi [build] rsync -ra scripts "$SSH_HOST:$BUILD_DIR" [build] echo "[$(date --utc -Ins)] Build via ssh" [build] # shellcheck disable=SC2086 [build] # Please note: all variables below the first ssh line must be quoted with ${var@Q}! [build] # See https://stackoverflow.com/questions/6592376/prevent-ssh-from-breaking-up-shell-script-parameters [build] ssh $SSH_ARGS "$SSH_HOST" $PORT_FORWARD podman run $PODMAN_PORT_FORWARD \ [build] --tmpfs /run/secrets \ [build] -e ADDITIONAL_SECRET="${ADDITIONAL_SECRET@Q}" \ [build] -e ADD_CAPABILITIES="${ADD_CAPABILITIES@Q}" \ [build] -e ALLOW_CROSS_PLATFORM_IMAGES="${ALLOW_CROSS_PLATFORM_IMAGES@Q}" \ [build] -e ANNOTATIONS_FILE="${ANNOTATIONS_FILE@Q}" \ [build] -e BUILD_ARGS_FILE="${BUILD_ARGS_FILE@Q}" \ [build] -e BUILD_TIMESTAMP="${BUILD_TIMESTAMP@Q}" \ [build] -e CONTEXT="${CONTEXT@Q}" \ [build] -e CONTEXTUALIZE_SBOM="${CONTEXTUALIZE_SBOM@Q}" \ [build] -e HERMETIC="${HERMETIC@Q}" \ [build] -e IMAGE="${IMAGE@Q}" \ [build] -e IMAGE_EXPIRES_AFTER="${IMAGE_EXPIRES_AFTER@Q}" \ [build] -e INHERIT_BASE_IMAGE_LABELS="${INHERIT_BASE_IMAGE_LABELS@Q}" \ [build] -e KBC_LOG_LEVEL="${KBC_LOG_LEVEL@Q}" \ [build] -e PRIVILEGED_NESTED="${PRIVILEGED_NESTED@Q}" \ [build] -e RHSM_MOUNT_CA_CERTS="${RHSM_MOUNT_CA_CERTS@Q}" \ [build] -e SBOM_SKIP_VALIDATION="${SBOM_SKIP_VALIDATION@Q}" \ [build] -e SBOM_SOURCE_SCAN_ENABLED="${SBOM_SOURCE_SCAN_ENABLED@Q}" \ [build] -e SBOM_SYFT_SELECT_CATALOGERS="${SBOM_SYFT_SELECT_CATALOGERS@Q}" \ [build] -e SBOM_TYPE="${SBOM_TYPE@Q}" \ [build] -e SKIP_INJECTIONS="${SKIP_INJECTIONS@Q}" \ [build] -e SKIP_SBOM_GENERATION="${SKIP_SBOM_GENERATION@Q}" \ [build] -e SKIP_UNUSED_STAGES="${SKIP_UNUSED_STAGES@Q}" \ [build] -e SOURCE_CODE_DIR="${SOURCE_CODE_DIR@Q}" \ [build] -e SQUASH="${SQUASH@Q}" \ [build] -e STORAGE_DRIVER="${STORAGE_DRIVER@Q}" \ [build] -e TARGET_STAGE="${TARGET_STAGE@Q}" \ [build] -e TLSVERIFY="${TLSVERIFY@Q}" \ [build] -e WORKINGDIR_MOUNT="${WORKINGDIR_MOUNT@Q}" \ [build] -e YUM_REPOS_D_FETCHED="${YUM_REPOS_D_FETCHED@Q}" \ [build] -e YUM_REPOS_D_SRC="${YUM_REPOS_D_SRC@Q}" \ [build] -e YUM_REPOS_D_TARGET="${YUM_REPOS_D_TARGET@Q}" \ [build] -e HOME="${HOME@Q}" \ [build] -e COMMIT_SHA="${COMMIT_SHA@Q}" \ [build] -e SOURCE_URL="${SOURCE_URL@Q}" \ [build] -e DOCKERFILE="${DOCKERFILE@Q}" \ [build] -e BUILDAH_HTTP_PROXY="${BUILDAH_HTTP_PROXY@Q}" \ [build] -e BUILDAH_NO_PROXY="${BUILDAH_NO_PROXY@Q}" \ [build] -e ICM_KEEP_COMPAT_LOCATION="${ICM_KEEP_COMPAT_LOCATION@Q}" \ [build] -e BUILDAH_OMIT_HISTORY="${BUILDAH_OMIT_HISTORY@Q}" \ [build] -e BUILDAH_SOURCE_DATE_EPOCH="${BUILDAH_SOURCE_DATE_EPOCH@Q}" \ [build] -e BUILDAH_REWRITE_TIMESTAMP="${BUILDAH_REWRITE_TIMESTAMP@Q}" \ [build] -v "${BUILD_DIR@Q}/volumes/shared:/shared:Z" \ [build] -v "${BUILD_DIR@Q}/volumes/workdir:/var/workdir:Z" \ [build] -v "${BUILD_DIR@Q}/volumes/etc-pki-entitlement:/entitlement:Z" \ [build] -v "${BUILD_DIR@Q}/volumes/activation-key:/activation-key:Z" \ [build] -v "${BUILD_DIR@Q}/volumes/additional-secret:/additional-secret:Z" \ [build] -v "${BUILD_DIR@Q}/volumes/trusted-ca:/mnt/trusted-ca:Z" \ [build] -v "${BUILD_DIR@Q}/volumes/proxy-ca-bundle:/mnt/proxy-ca-bundle:Z" \ [build] -v "${BUILD_DIR@Q}/.docker/:/root/.docker:Z" \ [build] -v "${BUILD_DIR@Q}/results/:/tekton/results:Z" \ [build] -v "${BUILD_DIR@Q}/scripts:/scripts:Z" \ [build] -v /var/lib/containers \ [build] "${PRIVILEGED_NESTED_FLAGS[@]@Q}" \ [build] --user=0 "${PODMAN_NVIDIA_ARGS[@]@Q}" --rm --entrypoint='' "${BUILDER_IMAGE@Q}" /scripts/script-build.sh "${@@Q}" [build] echo "[$(date --utc -Ins)] Rsync back" [build] rsync -razW --stats "$SSH_HOST:$BUILD_DIR/volumes/shared/" /shared/ [build] rsync -razW --stats "$SSH_HOST:$BUILD_DIR/volumes/workdir/" /var/workdir/ [build] rsync -razW --stats "$SSH_HOST:$BUILD_DIR/results/" "/tekton/results/" [build] echo "[$(date --utc -Ins)] Buildah pull" [build] buildah pull "oci:$(cat /shared/container_path):$IMAGE" [build] else [build] bash scripts/script-build.sh "$@" [build] fi [build] [2026-09-18T16:22:18,682638321+00:00] Using mounted CA bundle: /mnt/trusted-ca/ca-bundle.crt [build] '/mnt/trusted-ca/ca-bundle.crt' -> '/etc/pki/ca-trust/source/anchors/ca-bundle.crt' [build] [2026-09-18T16:22:18,686889154+00:00] Update CA trust [build] [2026-09-18T16:22:21,624256768+00:00] Prepare system (architecture: x86_64) [build] Effective container policy: [build] { [build] "default": [ [build] { [build] "type": "insecureAcceptAnything" [build] } [build] ], [build] "transports": { [build] "docker-daemon": { [build] "": [ [build] { [build] "type": "insecureAcceptAnything" [build] } [build] ] [build] } [build] } [build] } [build] [2026-09-18T16:22:21,639366290+00:00] Run the build [build] [2026-09-18T16:22:21,642961168+00:00] konflux-build-cli image build -f /var/workdir/source/python/success_200_isvc.Dockerfile -t quay.io/opendatahub/success-200-isvc:odh-pr-1978 --source source --context python --secret-dirs src=/additional-secret\,name=does-not-exist\,optional=true --workdir-mount '' --target '' --inherit-labels=true --source-date-epoch '' --rewrite-timestamp=false --squash=false --omit-history=false --image-source '' --image-revision dbf34c749787426c95a8512eae346bf65d0c3d6c --quay-image-expires-after '' --build-args-file '' --annotations-file '' --legacy-build-timestamp '' --add-legacy-labels --include-legacy-buildinfo-path=true --skip-injections=false --skip-unused-stages=true --hermetic=false --image-pull-proxy '' --image-pull-noproxy '' --yum-repos-d-sources --yum-repos-d-target /etc/yum.repos.d --prefetch-dir '' --prefetch-dir-copy '' --prefetch-env-mount /cachi2/cachi2.env --prefetch-output-mount /cachi2/output --security-opts unmask=/proc/interrupts --rhsm-activation-key=/activation-key/activationkey --rhsm-org=/activation-key/org --rhsm-activation-mount=/activation-key --rhsm-activation-preregister --containerfile-json-output /shared/parsed_dockerfile.json --resolved-base-images-output /shared/base_images_digests --no-cache --ulimits nofile=4096:4096 --src-tls-verify=true --dest-tls-verify=true --allow-cross-platform-images=false --build-args --envs --labels git.url=https://github.com/mholder6/kserve git.commit=dbf34c749787426c95a8512eae346bf65d0c3d6c --annotations [build] time="2026-09-18T16:22:21Z" level=info msg="[param] containerfile: /var/workdir/source/python/success_200_isvc.Dockerfile" [build] time="2026-09-18T16:22:21Z" level=info msg="[param] context: python" [build] time="2026-09-18T16:22:21Z" level=info msg="[param] source: source" [build] time="2026-09-18T16:22:21Z" level=info msg="[param] output-ref: quay.io/opendatahub/success-200-isvc:odh-pr-1978" [build] time="2026-09-18T16:22:21Z" level=info msg="[param] secret-dirs: [src=/additional-secret,name=does-not-exist,optional=true]" [build] time="2026-09-18T16:22:21Z" level=info msg="[param] labels: [git.url=https://github.com/mholder6/kserve git.commit=dbf34c749787426c95a8512eae346bf65d0c3d6c]" [build] time="2026-09-18T16:22:21Z" level=info msg="[param] image-revision: dbf34c749787426c95a8512eae346bf65d0c3d6c" [build] time="2026-09-18T16:22:21Z" level=info msg="[param] add-legacy-labels: true" [build] time="2026-09-18T16:22:21Z" level=info msg="[param] containerfile-json-output: /shared/parsed_dockerfile.json" [build] time="2026-09-18T16:22:21Z" level=info msg="[param] include-legacy-buildinfo-path: true" [build] time="2026-09-18T16:22:21Z" level=info msg="[param] yum-repos-d-target: /etc/yum.repos.d" [build] time="2026-09-18T16:22:21Z" level=info msg="[param] prefetch-output-mount: /cachi2/output" [build] time="2026-09-18T16:22:21Z" level=info msg="[param] prefetch-env-mount: /cachi2/cachi2.env" [build] time="2026-09-18T16:22:21Z" level=info msg="[param] resolved-base-images-output: /shared/base_images_digests" [build] time="2026-09-18T16:22:21Z" level=info msg="[param] rhsm-activation-key: /activation-key/activationkey" [build] time="2026-09-18T16:22:21Z" level=info msg="[param] rhsm-org: /activation-key/org" [build] time="2026-09-18T16:22:21Z" level=info msg="[param] rhsm-activation-mount: /activation-key" [build] time="2026-09-18T16:22:21Z" level=info msg="[param] rhsm-activation-preregister: true" [build] time="2026-09-18T16:22:21Z" level=info msg="[param] rhsm-mount-ca-certs: auto" [build] time="2026-09-18T16:22:21Z" level=info msg="[param] no-cache: true" [build] time="2026-09-18T16:22:21Z" level=info msg="[param] security-opts: [unmask=/proc/interrupts]" [build] time="2026-09-18T16:22:21Z" level=info msg="[param] ulimits: [nofile=4096:4096]" [build] time="2026-09-18T16:22:21Z" level=info msg="[param] sbom-format: spdx" [build] time="2026-09-18T16:22:26Z" level=info msg="buildah [stderr] Trying to pull registry.access.redhat.com/ubi9/python-311:9.7..." [build] time="2026-09-18T16:22:26Z" level=info msg="buildah [stderr] Getting image source signatures" [build] time="2026-09-18T16:22:27Z" level=info msg="buildah [stderr] Checking if image destination supports signatures" [build] time="2026-09-18T16:22:27Z" level=info msg="buildah [stderr] Copying blob sha256:515628f1357fc4365a8cdbf2535620a8f2ad70bd4d8755fd5ecbc1e5171645f2" [build] time="2026-09-18T16:22:27Z" level=info msg="buildah [stderr] Copying blob sha256:b66ab30abd6c3aa6e70bb84e4b3f0025035459b0fa3fc0d28bb37e057cde7b50" [build] time="2026-09-18T16:22:27Z" level=info msg="buildah [stderr] Copying blob sha256:45b10115c57ace5faafc3bcd0e634280e70c95bd3c0a576df4aa121f3ec5fc49" [build] time="2026-09-18T16:22:27Z" level=info msg="buildah [stderr] Copying blob sha256:2118fefecd7294918fa82547312fee454e5e7f39fa82dd5d7fd262d06ba68d8c" [build] time="2026-09-18T16:22:36Z" level=info msg="buildah [stderr] Copying config sha256:b2e11e28fd7ee11def737f274d1667cca595998442f20d4ae1734c240d9af377" [build] time="2026-09-18T16:22:36Z" level=info msg="buildah [stderr] Writing manifest to image destination" [build] time="2026-09-18T16:22:36Z" level=info msg="buildah [stderr] Storing signatures" [build] time="2026-09-18T16:22:36Z" level=info msg="buildah [stdout] b2e11e28fd7ee11def737f274d1667cca595998442f20d4ae1734c240d9af377" [build] time="2026-09-18T16:22:36Z" level=info msg="Injecting buildinfo: added labels.json" [build] time="2026-09-18T16:22:36Z" level=info msg="Injecting buildinfo: no prefetch SBOM found, not adding content-sets.json" [build] time="2026-09-18T16:22:36Z" level=info msg="Building container image..." [build] time="2026-09-18T16:22:36Z" level=info msg="buildah [stdout] [1/2] STEP 1/24: FROM registry.access.redhat.com/ubi9/python-311:9.7 AS builder" [build] time="2026-09-18T16:22:37Z" level=info msg="buildah [stdout] [1/2] STEP 2/24: WORKDIR /" [build] time="2026-09-18T16:22:37Z" level=info msg="buildah [stdout] [1/2] STEP 3/24: USER 0" [build] time="2026-09-18T16:22:37Z" level=info msg="buildah [stdout] [1/2] STEP 4/24: RUN dnf install -y --allowerasing gcc python3.11-devel && dnf clean all" [build] time="2026-09-18T16:22:37Z" level=info msg="buildah [stdout] Updating Subscription Management repositories." [build] time="2026-09-18T16:22:38Z" level=info msg="buildah [stdout] " [build] time="2026-09-18T16:22:38Z" level=info msg="buildah [stdout] This system has release set to 9.6 and it receives updates only for this release." [build] time="2026-09-18T16:22:38Z" level=info msg="buildah [stdout] " [build] time="2026-09-18T16:22:39Z" level=info msg="buildah [stdout] Red Hat Enterprise Linux 9 for x86_64 - BaseOS 99 MB/s | 87 MB 00:00 " [build] time="2026-09-18T16:22:47Z" level=info msg="buildah [stdout] Red Hat Enterprise Linux 9 for x86_64 - AppStre 114 MB/s | 73 MB 00:00 " [build] time="2026-09-18T16:23:07Z" level=info msg="buildah [stdout] Red Hat Universal Base Image 9 (RPMs) - BaseOS 57 kB/s | 535 kB 00:09 " [build] time="2026-09-18T16:23:33Z" level=info msg="buildah [stdout] Red Hat Universal Base Image 9 (RPMs) - AppStre 113 kB/s | 2.9 MB 00:25 " [build] time="2026-09-18T16:23:55Z" level=info msg="buildah [stdout] Red Hat Universal Base Image 9 (RPMs) - CodeRea 22 kB/s | 471 kB 00:21 " [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] Package gcc-11.5.0-11.el9.x86_64 is already installed." [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] Package python3.11-devel-3.11.13-5.3.el9_7.x86_64 is already installed." [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] Dependencies resolved." [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] ================================================================================" [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] Package Arch Version Repository Size" [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] ================================================================================" [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] Upgrading:" [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] cpp x86_64 11.5.0-14.el9 ubi-9-appstream-rpms 11 M" [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] gcc x86_64 11.5.0-14.el9 ubi-9-appstream-rpms 32 M" [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] gcc-c++ x86_64 11.5.0-14.el9 ubi-9-appstream-rpms 13 M" [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] gcc-gfortran x86_64 11.5.0-14.el9 ubi-9-appstream-rpms 13 M" [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] gcc-plugin-annobin x86_64 11.5.0-14.el9 ubi-9-appstream-rpms 37 k" [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] libgcc x86_64 11.5.0-14.el9 ubi-9-baseos-rpms 85 k" [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] libgfortran x86_64 11.5.0-14.el9 ubi-9-baseos-rpms 794 k" [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] libgomp x86_64 11.5.0-14.el9 ubi-9-baseos-rpms 258 k" [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] libquadmath x86_64 11.5.0-14.el9 ubi-9-baseos-rpms 184 k" [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] libquadmath-devel x86_64 11.5.0-14.el9 ubi-9-appstream-rpms 25 k" [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] libstdc++ x86_64 11.5.0-14.el9 ubi-9-baseos-rpms 745 k" [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] libstdc++-devel x86_64 11.5.0-14.el9 ubi-9-appstream-rpms 2.4 M" [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] python3.11 x86_64 3.11.13-10.el9_8 ubi-9-appstream-rpms 31 k" [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] python3.11-devel x86_64 3.11.13-10.el9_8 ubi-9-appstream-rpms 284 k" [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] python3.11-libs x86_64 3.11.13-10.el9_8 ubi-9-appstream-rpms 10 M" [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] sqlite x86_64 3.34.1-11.el9_8 ubi-9-appstream-rpms 764 k" [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] sqlite-devel x86_64 3.34.1-11.el9_8 ubi-9-appstream-rpms 140 k" [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] sqlite-libs x86_64 3.34.1-11.el9_8 ubi-9-baseos-rpms 650 k" [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] " [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] Transaction Summary" [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] ================================================================================" [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] Upgrade 18 Packages" [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] " [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] Total download size: 85 M" [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] Downloading Packages:" [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] (1/18): libgcc-11.5.0-14.el9.x86_64.rpm 2.0 MB/s | 85 kB 00:00 " [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] (2/18): libquadmath-11.5.0-14.el9.x86_64.rpm 9.9 MB/s | 184 kB 00:00 " [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] (3/18): libgfortran-11.5.0-14.el9.x86_64.rpm 12 MB/s | 794 kB 00:00 " [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] (4/18): sqlite-libs-3.34.1-11.el9_8.x86_64.rpm 77 MB/s | 650 kB 00:00 " [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] (5/18): libstdc++-11.5.0-14.el9.x86_64.rpm 57 MB/s | 745 kB 00:00 " [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] (6/18): libgomp-11.5.0-14.el9.x86_64.rpm 3.1 MB/s | 258 kB 00:00 " [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] (7/18): cpp-11.5.0-14.el9.x86_64.rpm 87 MB/s | 11 MB 00:00 " [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] (8/18): gcc-c++-11.5.0-14.el9.x86_64.rpm 73 MB/s | 13 MB 00:00 " [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] (9/18): gcc-plugin-annobin-11.5.0-14.el9.x86_64 1.7 MB/s | 37 kB 00:00 " [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] (10/18): libquadmath-devel-11.5.0-14.el9.x86_64 1.6 MB/s | 25 kB 00:00 " [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] (11/18): gcc-gfortran-11.5.0-14.el9.x86_64.rpm 90 MB/s | 13 MB 00:00 " [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] (12/18): python3.11-3.11.13-10.el9_8.x86_64.rpm 7.8 MB/s | 31 kB 00:00 " [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] (13/18): python3.11-devel-3.11.13-10.el9_8.x86_ 43 MB/s | 284 kB 00:00 " [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] (14/18): libstdc++-devel-11.5.0-14.el9.x86_64.r 40 MB/s | 2.4 MB 00:00 " [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] (15/18): sqlite-3.34.1-11.el9_8.x86_64.rpm 43 MB/s | 764 kB 00:00 " [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] (16/18): sqlite-devel-3.34.1-11.el9_8.x86_64.rp 30 MB/s | 140 kB 00:00 " [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] (17/18): gcc-11.5.0-14.el9.x86_64.rpm 88 MB/s | 32 MB 00:00 " [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] (18/18): python3.11-libs-3.11.13-10.el9_8.x86_6 86 MB/s | 10 MB 00:00 " [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] --------------------------------------------------------------------------------" [build] time="2026-09-18T16:23:58Z" level=info msg="buildah [stdout] Total 180 MB/s | 85 MB 00:00 " [build] time="2026-09-18T16:23:59Z" level=info msg="buildah [stdout] Running transaction check" [build] time="2026-09-18T16:23:59Z" level=info msg="buildah [stdout] Transaction check succeeded." [build] time="2026-09-18T16:23:59Z" level=info msg="buildah [stdout] Running transaction test" [build] time="2026-09-18T16:23:59Z" level=info msg="buildah [stdout] Transaction test succeeded." [build] time="2026-09-18T16:23:59Z" level=info msg="buildah [stdout] Running transaction" [build] time="2026-09-18T16:24:00Z" level=info msg="buildah [stdout] Preparing : 1/1 " [build] time="2026-09-18T16:24:00Z" level=info msg="buildah [stdout] Upgrading : libgcc-11.5.0-14.el9.x86_64 1/36 " [build] time="2026-09-18T16:24:00Z" level=info msg="buildah [stdout] Running scriptlet: libgcc-11.5.0-14.el9.x86_64 1/36 " [build] time="2026-09-18T16:24:00Z" level=info msg="buildah [stdout] Upgrading : libquadmath-11.5.0-14.el9.x86_64 2/36 " [build] time="2026-09-18T16:24:00Z" level=info msg="buildah [stdout] Upgrading : libstdc++-11.5.0-14.el9.x86_64 3/36 " [build] time="2026-09-18T16:24:00Z" level=info msg="buildah [stdout] Upgrading : sqlite-libs-3.34.1-11.el9_8.x86_64 4/36 " [build] time="2026-09-18T16:24:00Z" level=info msg="buildah [stdout] Upgrading : python3.11-3.11.13-10.el9_8.x86_64 5/36 " [build] time="2026-09-18T16:24:01Z" level=info msg="buildah [stdout] Upgrading : python3.11-libs-3.11.13-10.el9_8.x86_64 6/36 " [build] time="2026-09-18T16:24:01Z" level=info msg="buildah [stdout] Upgrading : sqlite-3.34.1-11.el9_8.x86_64 7/36 " [build] time="2026-09-18T16:24:01Z" level=info msg="buildah [stdout] Upgrading : libstdc++-devel-11.5.0-14.el9.x86_64 8/36 " [build] time="2026-09-18T16:24:01Z" level=info msg="buildah [stdout] Upgrading : libgfortran-11.5.0-14.el9.x86_64 9/36 " [build] time="2026-09-18T16:24:01Z" level=info msg="buildah [stdout] Upgrading : cpp-11.5.0-14.el9.x86_64 10/36 " [build] time="2026-09-18T16:24:01Z" level=info msg="buildah [stdout] Upgrading : libgomp-11.5.0-14.el9.x86_64 11/36 " [build] time="2026-09-18T16:24:01Z" level=info msg="buildah [stdout] Upgrading : gcc-11.5.0-14.el9.x86_64 12/36 " [build] time="2026-09-18T16:24:01Z" level=info msg="buildah [stdout] Running scriptlet: gcc-11.5.0-14.el9.x86_64 12/36 " [build] time="2026-09-18T16:24:01Z" level=info msg="buildah [stdout] Upgrading : libquadmath-devel-11.5.0-14.el9.x86_64 13/36 " [build] time="2026-09-18T16:24:01Z" level=info msg="buildah [stdout] Upgrading : gcc-gfortran-11.5.0-14.el9.x86_64 14/36 " [build] time="2026-09-18T16:24:01Z" level=info msg="buildah [stdout] Upgrading : gcc-c++-11.5.0-14.el9.x86_64 15/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Upgrading : gcc-plugin-annobin-11.5.0-14.el9.x86_64 16/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Running scriptlet: gcc-plugin-annobin-11.5.0-14.el9.x86_64 16/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Upgrading : sqlite-devel-3.34.1-11.el9_8.x86_64 17/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Upgrading : python3.11-devel-3.11.13-10.el9_8.x86_64 18/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Cleanup : gcc-gfortran-11.5.0-11.el9.x86_64 19/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Cleanup : libgfortran-11.5.0-11.el9.x86_64 20/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Cleanup : gcc-c++-11.5.0-11.el9.x86_64 21/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Cleanup : python3.11-devel-3.11.13-5.3.el9_7.x86_64 22/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Cleanup : gcc-plugin-annobin-11.5.0-11.el9.x86_64 23/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Running scriptlet: gcc-plugin-annobin-11.5.0-11.el9.x86_64 23/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Cleanup : libquadmath-devel-11.5.0-11.el9.x86_64 24/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Cleanup : sqlite-devel-3.34.1-9.el9_7.x86_64 25/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Cleanup : libstdc++-devel-11.5.0-11.el9.x86_64 26/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Cleanup : libstdc++-11.5.0-11.el9.x86_64 27/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Cleanup : gcc-11.5.0-11.el9.x86_64 28/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Cleanup : libquadmath-11.5.0-11.el9.x86_64 29/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Cleanup : python3.11-libs-3.11.13-5.3.el9_7.x86_64 30/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Cleanup : python3.11-3.11.13-5.3.el9_7.x86_64 31/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Cleanup : sqlite-3.34.1-9.el9_7.x86_64 32/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Cleanup : sqlite-libs-3.34.1-9.el9_7.x86_64 33/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Cleanup : libgcc-11.5.0-11.el9.x86_64 34/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Running scriptlet: libgcc-11.5.0-11.el9.x86_64 34/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Cleanup : cpp-11.5.0-11.el9.x86_64 35/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Cleanup : libgomp-11.5.0-11.el9.x86_64 36/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Running scriptlet: libgomp-11.5.0-11.el9.x86_64 36/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Verifying : libgcc-11.5.0-14.el9.x86_64 1/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Verifying : libgcc-11.5.0-11.el9.x86_64 2/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Verifying : libgfortran-11.5.0-14.el9.x86_64 3/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Verifying : libgfortran-11.5.0-11.el9.x86_64 4/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Verifying : libgomp-11.5.0-14.el9.x86_64 5/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Verifying : libgomp-11.5.0-11.el9.x86_64 6/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Verifying : libquadmath-11.5.0-14.el9.x86_64 7/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Verifying : libquadmath-11.5.0-11.el9.x86_64 8/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Verifying : libstdc++-11.5.0-14.el9.x86_64 9/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Verifying : libstdc++-11.5.0-11.el9.x86_64 10/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Verifying : sqlite-libs-3.34.1-11.el9_8.x86_64 11/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Verifying : sqlite-libs-3.34.1-9.el9_7.x86_64 12/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Verifying : cpp-11.5.0-14.el9.x86_64 13/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Verifying : cpp-11.5.0-11.el9.x86_64 14/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Verifying : gcc-11.5.0-14.el9.x86_64 15/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Verifying : gcc-11.5.0-11.el9.x86_64 16/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Verifying : gcc-c++-11.5.0-14.el9.x86_64 17/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Verifying : gcc-c++-11.5.0-11.el9.x86_64 18/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Verifying : gcc-gfortran-11.5.0-14.el9.x86_64 19/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Verifying : gcc-gfortran-11.5.0-11.el9.x86_64 20/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Verifying : gcc-plugin-annobin-11.5.0-14.el9.x86_64 21/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Verifying : gcc-plugin-annobin-11.5.0-11.el9.x86_64 22/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Verifying : libquadmath-devel-11.5.0-14.el9.x86_64 23/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Verifying : libquadmath-devel-11.5.0-11.el9.x86_64 24/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Verifying : libstdc++-devel-11.5.0-14.el9.x86_64 25/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Verifying : libstdc++-devel-11.5.0-11.el9.x86_64 26/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Verifying : python3.11-3.11.13-10.el9_8.x86_64 27/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Verifying : python3.11-3.11.13-5.3.el9_7.x86_64 28/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Verifying : python3.11-devel-3.11.13-10.el9_8.x86_64 29/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Verifying : python3.11-devel-3.11.13-5.3.el9_7.x86_64 30/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Verifying : python3.11-libs-3.11.13-10.el9_8.x86_64 31/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Verifying : python3.11-libs-3.11.13-5.3.el9_7.x86_64 32/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Verifying : sqlite-3.34.1-11.el9_8.x86_64 33/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Verifying : sqlite-3.34.1-9.el9_7.x86_64 34/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Verifying : sqlite-devel-3.34.1-11.el9_8.x86_64 35/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Verifying : sqlite-devel-3.34.1-9.el9_7.x86_64 36/36 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Installed products updated." [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Upgraded:" [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] cpp-11.5.0-14.el9.x86_64 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] gcc-11.5.0-14.el9.x86_64 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] gcc-c++-11.5.0-14.el9.x86_64 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] gcc-gfortran-11.5.0-14.el9.x86_64 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] gcc-plugin-annobin-11.5.0-14.el9.x86_64 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] libgcc-11.5.0-14.el9.x86_64 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] libgfortran-11.5.0-14.el9.x86_64 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] libgomp-11.5.0-14.el9.x86_64 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] libquadmath-11.5.0-14.el9.x86_64 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] libquadmath-devel-11.5.0-14.el9.x86_64 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] libstdc++-11.5.0-14.el9.x86_64 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] libstdc++-devel-11.5.0-14.el9.x86_64 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] python3.11-3.11.13-10.el9_8.x86_64 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] python3.11-devel-3.11.13-10.el9_8.x86_64 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] python3.11-libs-3.11.13-10.el9_8.x86_64 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] sqlite-3.34.1-11.el9_8.x86_64 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] sqlite-devel-3.34.1-11.el9_8.x86_64 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] sqlite-libs-3.34.1-11.el9_8.x86_64 " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] " [build] time="2026-09-18T16:24:02Z" level=info msg="buildah [stdout] Complete!" [build] time="2026-09-18T16:24:03Z" level=info msg="buildah [stdout] Updating Subscription Management repositories." [build] time="2026-09-18T16:24:04Z" level=info msg="buildah [stdout] " [build] time="2026-09-18T16:24:04Z" level=info msg="buildah [stdout] This system has release set to 9.6 and it receives updates only for this release." [build] time="2026-09-18T16:24:04Z" level=info msg="buildah [stdout] " [build] time="2026-09-18T16:24:05Z" level=info msg="buildah [stdout] 43 files removed" [build] time="2026-09-18T16:24:05Z" level=info msg="buildah [stdout] [1/2] STEP 5/24: RUN curl -LsSf https://astral.sh/uv/install.sh | sh && ln -s /root/.local/bin/uv /usr/local/bin/uv" [build] time="2026-09-18T16:24:05Z" level=info msg="buildah [stderr] downloading uv 0.12.16 x86_64-unknown-linux-gnu" [build] time="2026-09-18T16:24:06Z" level=info msg="buildah [stdout] installing to /opt/app-root/src/.local/bin" [build] time="2026-09-18T16:24:06Z" level=info msg="buildah [stdout] uv" [build] time="2026-09-18T16:24:06Z" level=info msg="buildah [stdout] uvx" [build] time="2026-09-18T16:24:06Z" level=info msg="buildah [stdout] everything's installed!" [build] time="2026-09-18T16:24:06Z" level=info msg="buildah [stdout] " [build] time="2026-09-18T16:24:06Z" level=info msg="buildah [stdout] To add $HOME/.local/bin to your PATH, either restart your shell or run:" [build] time="2026-09-18T16:24:06Z" level=info msg="buildah [stdout] " [build] time="2026-09-18T16:24:06Z" level=info msg="buildah [stdout] source $HOME/.local/bin/env (sh, bash, zsh)" [build] time="2026-09-18T16:24:06Z" level=info msg="buildah [stdout] source $HOME/.local/bin/env.fish (fish)" [build] time="2026-09-18T16:24:06Z" level=info msg="buildah [stdout] [1/2] STEP 6/24: ARG VENV_PATH" [build] time="2026-09-18T16:24:06Z" level=info msg="buildah [stdout] [1/2] STEP 7/24: ENV VIRTUAL_ENV=${VENV_PATH}" [build] time="2026-09-18T16:24:06Z" level=info msg="buildah [stdout] [1/2] STEP 8/24: RUN uv venv $VIRTUAL_ENV" [build] time="2026-09-18T16:24:06Z" level=info msg="buildah [stderr] Using CPython 3.9.25 interpreter at: /usr/bin/python3" [build] time="2026-09-18T16:24:06Z" level=info msg="buildah [stderr] Creating virtual environment at: /prod_venv" [build] time="2026-09-18T16:24:06Z" level=info msg="buildah [stdout] [1/2] STEP 9/24: ENV PATH=\"$VIRTUAL_ENV/bin:$PATH\"" [build] time="2026-09-18T16:24:06Z" level=info msg="buildah [stdout] [1/2] STEP 10/24: COPY storage/pyproject.toml storage/uv.lock storage/" [build] time="2026-09-18T16:24:06Z" level=info msg="buildah [stdout] [1/2] STEP 11/24: COPY kserve/pyproject.toml kserve/uv.lock kserve/" [build] time="2026-09-18T16:24:07Z" level=info msg="buildah [stdout] [1/2] STEP 12/24: RUN cd kserve && uv sync --active --no-cache" [build] time="2026-09-18T16:24:07Z" level=info msg="buildah [stderr] Using CPython 3.11.13 interpreter at: /usr/bin/python3.11" [build] time="2026-09-18T16:24:07Z" level=info msg="buildah [stderr] Removed virtual environment at: /prod_venv" [build] time="2026-09-18T16:24:07Z" level=info msg="buildah [stderr] Creating virtual environment at: /prod_venv" [build] time="2026-09-18T16:24:07Z" level=info msg="buildah [stderr] Resolved 301 packages in 1ms" [build] time="2026-09-18T16:24:07Z" level=info msg="buildah [stderr] Building kserve @ file:///kserve" [build] time="2026-09-18T16:24:07Z" level=info msg="buildah [stderr] Downloading grpcio (6.9MiB)" [build] time="2026-09-18T16:24:07Z" level=info msg="buildah [stderr] Downloading black (1.8MiB)" [build] time="2026-09-18T16:24:07Z" level=info msg="buildah [stderr] Downloading pillow (6.6MiB)" [build] time="2026-09-18T16:24:07Z" level=info msg="buildah [stderr] Downloading cryptography (4.5MiB)" [build] time="2026-09-18T16:24:07Z" level=info msg="buildah [stderr] Downloading kubernetes (4.4MiB)" [build] time="2026-09-18T16:24:07Z" level=info msg="buildah [stderr] Downloading numpy (16.1MiB)" [build] time="2026-09-18T16:24:07Z" level=info msg="buildah [stderr] Downloading pandas (12.2MiB)" [build] time="2026-09-18T16:24:07Z" level=info msg="buildah [stderr] Downloading uvloop (3.6MiB)" [build] time="2026-09-18T16:24:07Z" level=info msg="buildah [stderr] Downloading pydantic-core (2.0MiB)" [build] time="2026-09-18T16:24:07Z" level=info msg="buildah [stderr] Downloading aiohttp (1.7MiB)" [build] time="2026-09-18T16:24:07Z" level=info msg="buildah [stderr] Downloading setuptools (1.0MiB)" [build] time="2026-09-18T16:24:07Z" level=info msg="buildah [stderr] Downloading grpcio-tools (2.6MiB)" [build] time="2026-09-18T16:24:07Z" level=info msg="buildah [stderr] Downloaded setuptools" [build] time="2026-09-18T16:24:07Z" level=info msg="buildah [stderr] Downloaded aiohttp" [build] time="2026-09-18T16:24:07Z" level=info msg="buildah [stderr] Downloaded black" [build] time="2026-09-18T16:24:07Z" level=info msg="buildah [stderr] Downloaded pydantic-core" [build] time="2026-09-18T16:24:07Z" level=info msg="buildah [stderr] Downloaded grpcio-tools" [build] time="2026-09-18T16:24:07Z" level=info msg="buildah [stderr] Downloaded uvloop" [build] time="2026-09-18T16:24:07Z" level=info msg="buildah [stderr] Downloaded cryptography" [build] time="2026-09-18T16:24:07Z" level=info msg="buildah [stderr] Downloaded pillow" [build] time="2026-09-18T16:24:07Z" level=info msg="buildah [stderr] Downloaded grpcio" [build] time="2026-09-18T16:24:07Z" level=info msg="buildah [stderr] Downloaded kubernetes" [build] time="2026-09-18T16:24:08Z" level=info msg="buildah [stderr] Downloaded numpy" [build] time="2026-09-18T16:24:08Z" level=info msg="buildah [stderr] Downloaded pandas" [build] time="2026-09-18T16:24:08Z" level=info msg="buildah [stderr] Built kserve @ file:///kserve" [build] time="2026-09-18T16:24:08Z" level=info msg="buildah [stderr] Prepared 88 packages in 1.23s" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] Installed 88 packages in 2.68s" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + aiohappyeyeballs==2.7.1" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + aiohttp==3.14.3" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + aiosignal==1.4.0" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + annotated-doc==0.0.5" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + annotated-types==0.8.0" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + anyio==4.15.1" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + asgiref==3.12.1" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + attrs==26.1.0" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + black==26.5.1" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + certifi==2026.7.22" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + cffi==2.1.1" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + charset-normalizer==3.5.1" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + click==8.5.0" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + cloudevents==1.13.0" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + colorama==0.4.6" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + cryptography==50.0.1" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + deprecation==2.1.0" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + durationpy==0.11" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + fastapi==0.136.3" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + frozenlist==1.8.0" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + googleapis-common-protos==1.75.3" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + grpc-interceptor==0.15.4" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + grpcio==1.84.0" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + grpcio-tools==1.81.1" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + h11==0.16.0" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + httpcore==1.0.9" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + httptools==0.8.0" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + httpx==0.28.1" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + idna==3.19" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + kserve==0.21.0rc0 (from file:///kserve)" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + kubernetes==36.0.3" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + multidict==6.8.0" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + mypy-extensions==1.1.0" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + numpy==2.3.5" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + oauthlib==3.3.1" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + opentelemetry-api==1.44.0" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + opentelemetry-exporter-otlp==1.44.0" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + opentelemetry-exporter-otlp-proto-common==1.44.0" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + opentelemetry-exporter-otlp-proto-grpc==1.44.0" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + opentelemetry-exporter-otlp-proto-http==1.44.0" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + opentelemetry-instrumentation==0.65b0" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + opentelemetry-instrumentation-asgi==0.65b0" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + opentelemetry-instrumentation-fastapi==0.65b0" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + opentelemetry-instrumentation-grpc==0.65b0" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + opentelemetry-instrumentation-logging==0.65b0" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + opentelemetry-proto==1.44.0" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + opentelemetry-sdk==1.44.0" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + opentelemetry-semantic-conventions==0.65b0" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + opentelemetry-util-http==0.65b0" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + orjson==3.12.0" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + packaging==26.3" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + pandas==2.3.3" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + pathspec==1.1.1" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + pillow==12.3.0" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + platformdirs==4.11.8" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + prometheus-client==0.26.0" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + propcache==0.5.2" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + protobuf==6.33.6" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + psutil==5.9.8" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + pyasn1==0.6.4" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + pycparser==3.0" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + pydantic==2.13.5" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + pydantic-core==2.46.5" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + pyjwt==2.14.0" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + python-dateutil==2.9.0.post0" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + python-dotenv==1.2.3" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + python-multipart==0.0.32" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + pytokens==0.4.1" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + pytz==2026.3.post1" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + pyyaml==6.0.3" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + requests==2.34.2" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + requests-oauthlib==2.0.0" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + setuptools==80.10.2" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + six==1.17.0" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + starlette==1.6.0" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + tabulate==0.10.0" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + timing-asgi==0.3.2" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + typing-extensions==4.16.0" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + typing-inspection==0.4.4" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + tzdata==2026.4" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + urllib3==2.7.0" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + uvicorn==0.53.0" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + uvloop==0.22.1" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + watchfiles==1.2.0" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + websocket-client==1.9.2" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + websockets==17.1" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + wrapt==2.4.1" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stderr] + yarl==1.24.5" [build] time="2026-09-18T16:24:11Z" level=info msg="buildah [stdout] [1/2] STEP 13/24: COPY kserve kserve" [build] time="2026-09-18T16:24:12Z" level=info msg="buildah [stdout] [1/2] STEP 14/24: RUN cd kserve && uv sync --active --no-cache" [build] time="2026-09-18T16:24:12Z" level=info msg="buildah [stderr] Resolved 301 packages in 1ms" [build] time="2026-09-18T16:24:12Z" level=info msg="buildah [stderr] Building kserve @ file:///kserve" [build] time="2026-09-18T16:24:13Z" level=info msg="buildah [stderr] Built kserve @ file:///kserve" [build] time="2026-09-18T16:24:13Z" level=info msg="buildah [stderr] Prepared 1 package in 1.06s" [build] time="2026-09-18T16:24:13Z" level=info msg="buildah [stderr] Uninstalled 1 package in 0.40ms" [build] time="2026-09-18T16:24:13Z" level=info msg="buildah [stderr] Installed 1 package in 6ms" [build] time="2026-09-18T16:24:13Z" level=info msg="buildah [stderr] ~ kserve==0.21.0rc0 (from file:///kserve)" [build] time="2026-09-18T16:24:13Z" level=info msg="buildah [stdout] [1/2] STEP 15/24: RUN echo $(pwd)" [build] time="2026-09-18T16:24:13Z" level=info msg="buildah [stdout] /" [build] time="2026-09-18T16:24:13Z" level=info msg="buildah [stdout] [1/2] STEP 16/24: RUN echo $(ls)" [build] time="2026-09-18T16:24:13Z" level=info msg="buildah [stdout] activation-key afs bin boot dev etc home kserve lib lib64 media mnt opt proc prod_venv root run sbin srv storage sys tmp usr var" [build] time="2026-09-18T16:24:13Z" level=info msg="buildah [stdout] [1/2] STEP 17/24: COPY test_resources/graph/success_200_isvc/pyproject.toml test_resources/graph/success_200_isvc/uv.lock test_resources/graph/success_200_isvc/" [build] time="2026-09-18T16:24:14Z" level=info msg="buildah [stdout] [1/2] STEP 18/24: RUN cd test_resources/graph/success_200_isvc && uv sync --active --no-cache" [build] time="2026-09-18T16:24:14Z" level=info msg="buildah [stderr] Resolved 95 packages in 1ms" [build] time="2026-09-18T16:24:14Z" level=info msg="buildah [stderr] Building kserve @ file:///kserve" [build] time="2026-09-18T16:24:14Z" level=info msg="buildah [stderr] Downloading numpy (16.1MiB)" [build] time="2026-09-18T16:24:14Z" level=info msg="buildah [stderr] Downloading grpcio (6.8MiB)" [build] time="2026-09-18T16:24:14Z" level=info msg="buildah [stderr] Downloaded grpcio" [build] time="2026-09-18T16:24:14Z" level=info msg="buildah [stderr] Downloaded numpy" [build] time="2026-09-18T16:24:15Z" level=info msg="buildah [stderr] Built kserve @ file:///kserve" [build] time="2026-09-18T16:24:15Z" level=info msg="buildah [stderr] Prepared 9 packages in 1.23s" [build] time="2026-09-18T16:24:15Z" level=info msg="buildah [stderr] Uninstalled 9 packages in 109ms" [build] time="2026-09-18T16:24:16Z" level=info msg="buildah [stderr] Installed 9 packages in 965ms" [build] time="2026-09-18T16:24:16Z" level=info msg="buildah [stderr] - fastapi==0.136.3" [build] time="2026-09-18T16:24:16Z" level=info msg="buildah [stderr] + fastapi==0.141.1" [build] time="2026-09-18T16:24:16Z" level=info msg="buildah [stderr] - grpcio==1.84.0" [build] time="2026-09-18T16:24:16Z" level=info msg="buildah [stderr] + grpcio==1.83.1" [build] time="2026-09-18T16:24:16Z" level=info msg="buildah [stderr] ~ kserve==0.21.0rc0 (from file:///kserve)" [build] time="2026-09-18T16:24:16Z" level=info msg="buildah [stderr] - numpy==2.3.5" [build] time="2026-09-18T16:24:16Z" level=info msg="buildah [stderr] + numpy==2.4.6" [build] time="2026-09-18T16:24:16Z" level=info msg="buildah [stderr] - pyjwt==2.14.0" [build] time="2026-09-18T16:24:16Z" level=info msg="buildah [stderr] + pyjwt==2.13.0" [build] time="2026-09-18T16:24:16Z" level=info msg="buildah [stderr] - setuptools==80.10.2" [build] time="2026-09-18T16:24:16Z" level=info msg="buildah [stderr] + setuptools==84.0.0" [build] time="2026-09-18T16:24:16Z" level=info msg="buildah [stderr] - tzdata==2026.4" [build] time="2026-09-18T16:24:16Z" level=info msg="buildah [stderr] + tzdata==2026.3" [build] time="2026-09-18T16:24:16Z" level=info msg="buildah [stderr] - uvicorn==0.53.0" [build] time="2026-09-18T16:24:16Z" level=info msg="buildah [stderr] + uvicorn==0.52.4" [build] time="2026-09-18T16:24:16Z" level=info msg="buildah [stderr] - wrapt==2.4.1" [build] time="2026-09-18T16:24:16Z" level=info msg="buildah [stderr] + wrapt==2.4.0" [build] time="2026-09-18T16:24:16Z" level=info msg="buildah [stdout] [1/2] STEP 19/24: COPY test_resources/graph/success_200_isvc test_resources/graph/success_200_isvc" [build] time="2026-09-18T16:24:16Z" level=info msg="buildah [stdout] [1/2] STEP 20/24: RUN cd test_resources/graph/success_200_isvc && uv sync --active --no-cache" [build] time="2026-09-18T16:24:17Z" level=info msg="buildah [stderr] Resolved 95 packages in 1ms" [build] time="2026-09-18T16:24:17Z" level=info msg="buildah [stderr] Checked 88 packages in 8ms" [build] time="2026-09-18T16:24:17Z" level=info msg="buildah [stdout] [1/2] STEP 21/24: COPY pyproject.toml pyproject.toml" [build] time="2026-09-18T16:24:17Z" level=info msg="buildah [stdout] [1/2] STEP 22/24: COPY third_party/pip-licenses.py pip-licenses.py" [build] time="2026-09-18T16:24:17Z" level=info msg="buildah [stdout] [1/2] STEP 23/24: RUN pip install --no-cache-dir tomli" [build] time="2026-09-18T16:24:17Z" level=info msg="buildah [stdout] Collecting tomli" [build] time="2026-09-18T16:24:17Z" level=info msg="buildah [stdout] Downloading tomli-2.4.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.metadata (10 kB)" [build] time="2026-09-18T16:24:17Z" level=info msg="buildah [stdout] Downloading tomli-2.4.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (243 kB)" [build] time="2026-09-18T16:24:17Z" level=info msg="buildah [stdout] Installing collected packages: tomli" [build] time="2026-09-18T16:24:17Z" level=info msg="buildah [stdout] Successfully installed tomli-2.4.1" [build] time="2026-09-18T16:24:17Z" level=info msg="buildah [stderr] " [build] time="2026-09-18T16:24:17Z" level=info msg="buildah [stderr] [notice] A new release of pip is available: 24.2 -> 26.2.1" [build] time="2026-09-18T16:24:17Z" level=info msg="buildah [stderr] [notice] To update, run: pip install --upgrade pip" [build] time="2026-09-18T16:24:18Z" level=info msg="buildah [stdout] [1/2] STEP 24/24: RUN mkdir -p third_party/library && python3 pip-licenses.py" [build] time="2026-09-18T16:24:18Z" level=info msg="buildah [stderr] 2026-09-18 16:24:18,503 [INFO] {'from': 'mixed', 'format': 'plain-vertical', 'with_license_file': True, 'with_notice_file': True, 'with_urls': True, 'output_path': 'third_party/library', 'ignore_packages': ['nvidia-cublas-cu12', 'nvidia-cuda-cupti-cu12', 'nvidia-cuda-nvrtc-cu12', 'nvidia-cuda-runtime-cu12', 'nvidia-cudnn-cu12', 'nvidia-cufft-cu12', 'nvidia-cufile-cu12', 'nvidia-curand-cu12', 'nvidia-cusolver-cu12', 'nvidia-cusparse-cu12', 'nvidia-nccl-cu12', 'nvidia-nvjitlink-cu12', 'nvidia-nvtx-cu12', 'nvidia-cusparselt-cu12', 'nvidia-nvshmem-cu12', 'nvidia-cublas', 'nvidia-cuda-cupti', 'nvidia-cuda-nvrtc', 'nvidia-cuda-runtime', 'nvidia-cudnn-cu13', 'nvidia-cufft', 'nvidia-cufile', 'nvidia-curand', 'nvidia-cusolver', 'nvidia-cusparse', 'nvidia-cusparselt-cu13', 'nvidia-nccl-cu13', 'nvidia-nvjitlink', 'nvidia-nvshmem-cu13', 'nvidia-nvtx', 'nvidia-cutlass-dsl', 'nvidia-cutlass-dsl-libs-base', 'nvidia-cutlass-dsl-libs-cu13', 'nvidia-cudnn-frontend', 'intel-openmp', 'intel-cmplr-lib-ur', 'umf', 'tcmlib'], 'allow_only': 'Apache Software License;MIT License;BSD License;Mozilla Public License 2.0 (MPL 2.0);Python Software Foundation License;CMU License (MIT-CMU);The Unlicense (Unlicense);ISC License (ISCL);GNU Lesser General Public License v2 (LGPLv2);GNU General Public License (GPL);Historical Permission Notice and Disclaimer (HPND);Public Domain;'}" [build] time="2026-09-18T16:24:19Z" level=info msg="buildah [stdout] [2/2] STEP 1/16: FROM registry.access.redhat.com/ubi9/python-311:9.7 AS prod" [build] time="2026-09-18T16:24:19Z" level=info msg="buildah [stdout] [2/2] STEP 2/16: WORKDIR /" [build] time="2026-09-18T16:24:19Z" level=info msg="buildah [stdout] [2/2] STEP 3/16: ARG VENV_PATH" [build] time="2026-09-18T16:24:19Z" level=info msg="buildah [stdout] [2/2] STEP 4/16: ENV VIRTUAL_ENV=${VENV_PATH}" [build] time="2026-09-18T16:24:19Z" level=info msg="buildah [stdout] [2/2] STEP 5/16: ENV PATH=\"$VIRTUAL_ENV/bin:$PATH\"" [build] time="2026-09-18T16:24:19Z" level=info msg="buildah [stdout] [2/2] STEP 6/16: USER 0" [build] time="2026-09-18T16:24:19Z" level=info msg="buildah [stdout] [2/2] STEP 7/16: RUN useradd kserve -m -u 1000 -d /home/kserve" [build] time="2026-09-18T16:24:20Z" level=info msg="buildah [stdout] [2/2] STEP 8/16: COPY --from=builder --chown=kserve:kserve third_party third_party" [build] time="2026-09-18T16:24:20Z" level=info msg="buildah [stdout] [2/2] STEP 9/16: COPY --from=builder --chown=kserve:kserve $VIRTUAL_ENV $VIRTUAL_ENV" [build] time="2026-09-18T16:24:27Z" level=info msg="buildah [stdout] [2/2] STEP 10/16: COPY --from=builder kserve kserve" [build] time="2026-09-18T16:24:27Z" level=info msg="buildah [stdout] [2/2] STEP 11/16: COPY --from=builder test_resources/graph/success_200_isvc success_200_isvc" [build] time="2026-09-18T16:24:27Z" level=info msg="buildah [stdout] [2/2] STEP 12/16: USER 1000" [build] time="2026-09-18T16:24:27Z" level=info msg="buildah [stdout] [2/2] STEP 13/16: ENTRYPOINT [\"python\", \"-m\", \"success_200_isvc.model\"]" [build] time="2026-09-18T16:24:27Z" level=info msg="buildah [stdout] [2/2] STEP 14/16: COPY --from=.konflux-buildinfo . /usr/share/buildinfo/" [build] time="2026-09-18T16:24:27Z" level=info msg="buildah [stdout] [2/2] STEP 15/16: COPY --from=.konflux-buildinfo . /root/buildinfo/" [build] time="2026-09-18T16:24:27Z" level=info msg="buildah [stdout] [2/2] STEP 16/16: LABEL \"org.opencontainers.image.created\"=\"2026-09-18T16:22:21Z\" \"org.opencontainers.image.revision\"=\"dbf34c749787426c95a8512eae346bf65d0c3d6c\" \"build-date\"=\"2026-09-18T16:22:21Z\" \"architecture\"=\"x86_64\" \"vcs-ref\"=\"dbf34c749787426c95a8512eae346bf65d0c3d6c\" \"vcs-type\"=\"git\" \"git.url\"=\"https://github.com/mholder6/kserve\" \"git.commit\"=\"dbf34c749787426c95a8512eae346bf65d0c3d6c\"" [build] time="2026-09-18T16:24:27Z" level=info msg="buildah [stdout] [2/2] COMMIT quay.io/opendatahub/success-200-isvc:odh-pr-1978" [build] time="2026-09-18T16:24:34Z" level=info msg="buildah [stdout] --> d9d9f79b5c37" [build] time="2026-09-18T16:24:34Z" level=info msg="buildah [stdout] Successfully tagged quay.io/opendatahub/success-200-isvc:odh-pr-1978" [build] time="2026-09-18T16:24:35Z" level=info msg="buildah [stdout] d9d9f79b5c376e3565403865edac590b598232a25320230685409671edf67c80" [build] time="2026-09-18T16:24:36Z" level=info msg="Build completed successfully" [build] time="2026-09-18T16:24:36Z" level=info msg="Writing parsed Containerfile to: /shared/parsed_dockerfile.json" [build] time="2026-09-18T16:24:36Z" level=info msg="Containerfile JSON written successfully" [build] time="2026-09-18T16:24:36Z" level=info msg="Writing resolved base images to: /shared/base_images_digests" [build] time="2026-09-18T16:24:36Z" level=info msg="Resolved base images written successfully" [build] {"image_url":"quay.io/opendatahub/success-200-isvc:odh-pr-1978"}[2026-09-18T16:24:37,095026891+00:00] Add metadata [build] Getting image source signatures [build] Copying blob sha256:2a679bb75c484ad6fe89f3766059b423a7cce6d7d862033efff9a543d7d60b24 [build] Copying blob sha256:195d3036adb0dad0f63d128dcc157659da4433cefb1846e5f70b5963c14fb36a [build] Copying blob sha256:2a77e49aac5d8d6ddb1dd1e8bec5dc4fa8dfa50df24d8235c9f1362ae38bd971 [build] Copying blob sha256:d29ec1216ef4fa2ee16adbe4aa50828cb8108603df693ab16aabdc0a4abc3f13 [build] Copying blob sha256:c4ef2d294465b7aa7ffbfa9ee3ffbb9db5cc6dba7e3abbfb4479b1af72352975 [build] Copying config sha256:d9d9f79b5c376e3565403865edac590b598232a25320230685409671edf67c80 [build] Writing manifest to image destination [build] [2026-09-18T16:24:44,160511618+00:00] End build [build] echo "Build on remote host $SSH_HOST finished" [build] Build on remote host localhost finished [build] [build] echo "[$(date --utc -Ins)] Final touches" [build] [2026-09-18T16:24:44,163234990+00:00] Final touches [build] [build] buildah images [build] REPOSITORY TAG IMAGE ID CREATED SIZE [build] quay.io/opendatahub/success-200-isvc odh-pr-1978 d9d9f79b5c37 16 seconds ago 1.38 GB [build] registry.access.redhat.com/ubi9/python-311 9.7 b2e11e28fd7e 4 months ago 1.1 GB [build] echo "[$(date --utc -Ins)] End remote" [build] [2026-09-18T16:24:44,191926037+00:00] End remote [push] [2026-09-18T16:24:44,883396811+00:00] Update CA trust [push] INFO: Using mounted CA bundle: /mnt/trusted-ca/ca-bundle.crt [push] '/mnt/trusted-ca/ca-bundle.crt' -> '/etc/pki/ca-trust/source/anchors/ca-bundle.crt' [push] [2026-09-18T16:24:49,863690823+00:00] Convert image [push] [2026-09-18T16:24:49,865444361+00:00] Push image with unique tag [push] Pushing to quay.io/opendatahub/success-200-isvc:kserve-group-test-wzfv5-build-success-200-isvc [push] [retry] executing: buildah push --format=docker --retry 3 --tls-verify=true quay.io/opendatahub/success-200-isvc:odh-pr-1978 docker://quay.io/opendatahub/success-200-isvc:kserve-group-test-wzfv5-build-success-200-isvc [push] Getting image source signatures [push] Copying blob sha256:2a679bb75c484ad6fe89f3766059b423a7cce6d7d862033efff9a543d7d60b24 [push] Copying blob sha256:2a77e49aac5d8d6ddb1dd1e8bec5dc4fa8dfa50df24d8235c9f1362ae38bd971 [push] Copying blob sha256:d29ec1216ef4fa2ee16adbe4aa50828cb8108603df693ab16aabdc0a4abc3f13 [push] Copying blob sha256:195d3036adb0dad0f63d128dcc157659da4433cefb1846e5f70b5963c14fb36a [push] Copying blob sha256:c4ef2d294465b7aa7ffbfa9ee3ffbb9db5cc6dba7e3abbfb4479b1af72352975 [push] Copying config sha256:d9d9f79b5c376e3565403865edac590b598232a25320230685409671edf67c80 [push] Writing manifest to image destination [push] [2026-09-18T16:25:01,578954969+00:00] Push image with git revision [push] Pushing to quay.io/opendatahub/success-200-isvc:odh-pr-1978 [push] [retry] executing: buildah push --format=docker --retry 3 --tls-verify=true --digestfile /var/workdir/image-digest quay.io/opendatahub/success-200-isvc:odh-pr-1978 docker://quay.io/opendatahub/success-200-isvc:odh-pr-1978 [push] Getting image source signatures [push] Copying blob sha256:2a679bb75c484ad6fe89f3766059b423a7cce6d7d862033efff9a543d7d60b24 [push] Copying blob sha256:195d3036adb0dad0f63d128dcc157659da4433cefb1846e5f70b5963c14fb36a [push] Copying blob sha256:2a77e49aac5d8d6ddb1dd1e8bec5dc4fa8dfa50df24d8235c9f1362ae38bd971 [push] Copying blob sha256:d29ec1216ef4fa2ee16adbe4aa50828cb8108603df693ab16aabdc0a4abc3f13 [push] Copying blob sha256:c4ef2d294465b7aa7ffbfa9ee3ffbb9db5cc6dba7e3abbfb4479b1af72352975 [push] Copying config sha256:d9d9f79b5c376e3565403865edac590b598232a25320230685409671edf67c80 [push] Writing manifest to image destination [push] sha256:45e3d142a3a53dd27ff8788f68fb8dcc3f17860dc8b91caa534c649c4efd593equay.io/opendatahub/success-200-isvc:odh-pr-1978 [push] [retry] executing: kubectl get configmap cluster-config -n konflux-info -o json [push] Keyless signing is disabled (none of rekorInternalUrl, fulcioInternalUrl, defaultOIDCIssuer, tufInternalUrl are configured in the konflux-info/cluster-config configmap) [push] [2026-09-18T16:25:02,973757372+00:00] End push [sbom-syft-generate] [2026-09-18T16:25:03,015791635+00:00] Generate SBOM [sbom-syft-generate] Running syft on the image [sbom-syft-generate] Running syft on the source code [sbom-syft-generate] [0000] WARN no explicit name and version provided for directory source, deriving artifact ID from the given path (which is not ideal) [sbom-syft-generate] [2026-09-18T16:25:31,126934539+00:00] End sbom-syft-generate [prepare-sboms] [2026-09-18T16:25:31,222623632+00:00] Prepare SBOM [prepare-sboms] [2026-09-18T16:25:31,230070867+00:00] Generate SBOM with mobster [prepare-sboms] Skipping SBOM validation [prepare-sboms] 2026-09-18 16:25:43,121 [INFO] mobster.log: Logging level set to 20 [prepare-sboms] 2026-09-18 16:25:52,426 [INFO] mobster.oci: Fetching manifest for registry.access.redhat.com/ubi9/python-311@sha256:de8a3132505ea3aabc0133dab66aae1e45cc967edbf399477a771e18cf0c34e8 [prepare-sboms] 2026-09-18 16:25:54,025 [INFO] mobster.cmd.generate.oci_image.contextual_sbom.contextualize: Contextual workflow will be used. Parent SBOM used for contextualization: https://konflux-ci.dev/spdxdocs/quay.io/redhat-user-workloads/osci-rhel-containers-tenant/rhel-9-7/python-311-9-7@sha256:f66acc969432f4c2d4237ff73409a0f15d51f7507ad5082b37cfce92c3029dce-4226d282-42ce-477a-a9f0-69ca5b0caa63 [prepare-sboms] 2026-09-18 16:25:56,324 [INFO] mobster.cmd.generate.oci_image.contextual_sbom.logging: {"event_type": "contextual_sbom_matching_statistics", "parent_sbom_reference": "https://konflux-ci.dev/spdxdocs/quay.io/redhat-user-workloads/osci-rhel-containers-tenant/rhel-9-7/python-311-9-7@sha256:f66acc969432f4c2d4237ff73409a0f15d51f7507ad5082b37cfce92c3029dce-4226d282-42ce-477a-a9f0-69ca5b0caa63", "component_sbom_reference": "https://konflux-ci.dev/spdxdocs/quay.io/opendatahub/success-200-isvc@sha256:45e3d142a3a53dd27ff8788f68fb8dcc3f17860dc8b91caa534c649c4efd593e-43306f46-7f81-41cd-99dc-ae8c011fe495", "component_packages": {"total": 1323, "matched": 666, "unmatched_all": 657, "unmatched_component_only": 649, "unmatched_without_unique_id": 8}, "parent_packages": {"total": 755, "matched": 750, "unmatched_all": 5, "unmatched_removed_at_build": 5, "unmatched_without_unique_id": 0}, "match_methods": {"by_checksum": 0, "by_verification_code": 442, "by_purl": 224, "total": 666}, "match_origins": {"syft_to_syft": 662, "syft_to_hermeto": 0, "hermeto_to_syft": 4, "hermeto_to_hermeto": 0}, "duplicate_identifiers": {"checksums": {"count": 0, "details": []}, "verification_codes": {"count": 0, "details": []}, "purls": {"count": 0, "details": []}}} [prepare-sboms] 2026-09-18 16:25:56,328 [INFO] mobster.cmd.generate.oci_image: Contextual SBOM workflow finished successfully. [prepare-sboms] 2026-09-18 16:25:56,328 [INFO] mobster.log: Contextual workflow completed in 6.81s [prepare-sboms] 2026-09-18 16:26:00,822 [INFO] mobster.main: Exiting with code 0. [prepare-sboms] [2026-09-18T16:26:01,827668368+00:00] End prepare-sboms [upload-sbom] [2026-09-18T16:26:02,422057054+00:00] Upload SBOM [upload-sbom] INFO: Using mounted CA bundle: /mnt/trusted-ca/ca-bundle.crt [upload-sbom] '/mnt/trusted-ca/ca-bundle.crt' -> '/etc/pki/ca-trust/source/anchors/ca-bundle.crt' [upload-sbom] Using token for quay.io/opendatahub/success-200-isvc [upload-sbom] Pushing sbom to registry [upload-sbom] [retry] executing: cosign attach sbom --sbom sbom.json --type spdx quay.io/opendatahub/success-200-isvc:odh-pr-1978@sha256:45e3d142a3a53dd27ff8788f68fb8dcc3f17860dc8b91caa534c649c4efd593e [upload-sbom] WARNING: SBOM attachments are deprecated and support will be removed in a Cosign release soon after 2024-02-22 (see https://github.com/sigstore/cosign/issues/2755). Instead, please use SBOM attestations. [upload-sbom] WARNING: Attaching SBOMs this way does not sign them. To sign them, use 'cosign attest --predicate sbom.json --key '. [upload-sbom] Uploading SBOM file for [quay.io/opendatahub/success-200-isvc@sha256:45e3d142a3a53dd27ff8788f68fb8dcc3f17860dc8b91caa534c649c4efd593e] to [quay.io/opendatahub/success-200-isvc:sha256-45e3d142a3a53dd27ff8788f68fb8dcc3f17860dc8b91caa534c649c4efd593e.sbom] with mediaType [text/spdx+json]. [upload-sbom] [upload-sbom] quay.io/opendatahub/success-200-isvc@sha256:6817a40fd768fd63df1ab71c0cea7e5245a0a93a53ed64a40c28a1ec64bdc511 [upload-sbom] [2026-09-18T16:26:37,720648273+00:00] End upload-sbom