[use-trusted-artifact] Using token for quay.io/opendatahub/kserve [use-trusted-artifact] Executing: oras blob fetch --registry-config /tmp/use-oci.sh.Lpq9Cz/auth-28HCXo.json quay.io/opendatahub/kserve@sha256:4b33fb32b111aa4ef129e43b8cb937b79c3645fd9f6e82ed05e42be3950f5694 --output - [use-trusted-artifact] Restored artifact quay.io/opendatahub/kserve@sha256:4b33fb32b111aa4ef129e43b8cb937b79c3645fd9f6e82ed05e42be3950f5694 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:4b33fb32b111aa4ef129e43b8cb937b79c3645fd9f6e82ed05e42be3950f5694=/var/workdir/source =/var/workdir/cachi2" [use-trusted-artifact] User time (seconds): 1.89 [use-trusted-artifact] System time (seconds): 1.30 [use-trusted-artifact] Percent of CPU this job got: 130% [use-trusted-artifact] Elapsed (wall clock) time (h:mm:ss or m:ss): 0:02.44 [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): 21584 [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: 4761 [use-trusted-artifact] Voluntary context switches: 40792 [use-trusted-artifact] Involuntary context switches: 61 [use-trusted-artifact] Swaps: 0 [use-trusted-artifact] File system inputs: 0 [use-trusted-artifact] File system outputs: 963536 [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-09T19:34:01,861892893+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-09T19:34:01,875434097+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-09T19:34:01,880140574+00:00] Update CA trust [build] [2026-09-09T19:34:04,819106989+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-09T19:34:04,835917317+00:00] Run the build [build] [2026-09-09T19:34:04,839962261+00:00] konflux-build-cli image build -f /var/workdir/source/python/sklearn.Dockerfile -t quay.io/opendatahub/sklearn-serving-runtime:odh-pr-1907 --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 3847189fcb1bd61eb1a15ae36e34f167a3dc2b44 --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/Jooho/kserve git.commit=3847189fcb1bd61eb1a15ae36e34f167a3dc2b44 --annotations [build] time="2026-09-09T19:34:04Z" level=info msg="[param] containerfile: /var/workdir/source/python/sklearn.Dockerfile" [build] time="2026-09-09T19:34:04Z" level=info msg="[param] context: python" [build] time="2026-09-09T19:34:04Z" level=info msg="[param] source: source" [build] time="2026-09-09T19:34:04Z" level=info msg="[param] output-ref: quay.io/opendatahub/sklearn-serving-runtime:odh-pr-1907" [build] time="2026-09-09T19:34:04Z" level=info msg="[param] secret-dirs: [src=/additional-secret,name=does-not-exist,optional=true]" [build] time="2026-09-09T19:34:04Z" level=info msg="[param] labels: [git.url=https://github.com/Jooho/kserve git.commit=3847189fcb1bd61eb1a15ae36e34f167a3dc2b44]" [build] time="2026-09-09T19:34:04Z" level=info msg="[param] image-revision: 3847189fcb1bd61eb1a15ae36e34f167a3dc2b44" [build] time="2026-09-09T19:34:04Z" level=info msg="[param] add-legacy-labels: true" [build] time="2026-09-09T19:34:04Z" level=info msg="[param] containerfile-json-output: /shared/parsed_dockerfile.json" [build] time="2026-09-09T19:34:04Z" level=info msg="[param] include-legacy-buildinfo-path: true" [build] time="2026-09-09T19:34:04Z" level=info msg="[param] yum-repos-d-target: /etc/yum.repos.d" [build] time="2026-09-09T19:34:04Z" level=info msg="[param] prefetch-output-mount: /cachi2/output" [build] time="2026-09-09T19:34:04Z" level=info msg="[param] prefetch-env-mount: /cachi2/cachi2.env" [build] time="2026-09-09T19:34:04Z" level=info msg="[param] resolved-base-images-output: /shared/base_images_digests" [build] time="2026-09-09T19:34:04Z" level=info msg="[param] rhsm-activation-key: /activation-key/activationkey" [build] time="2026-09-09T19:34:04Z" level=info msg="[param] rhsm-org: /activation-key/org" [build] time="2026-09-09T19:34:04Z" level=info msg="[param] rhsm-activation-mount: /activation-key" [build] time="2026-09-09T19:34:04Z" level=info msg="[param] rhsm-activation-preregister: true" [build] time="2026-09-09T19:34:04Z" level=info msg="[param] rhsm-mount-ca-certs: auto" [build] time="2026-09-09T19:34:04Z" level=info msg="[param] no-cache: true" [build] time="2026-09-09T19:34:04Z" level=info msg="[param] security-opts: [unmask=/proc/interrupts]" [build] time="2026-09-09T19:34:04Z" level=info msg="[param] ulimits: [nofile=4096:4096]" [build] time="2026-09-09T19:34:04Z" level=info msg="[param] sbom-format: spdx" [build] time="2026-09-09T19:34:12Z" level=info msg="buildah [stderr] Trying to pull registry.access.redhat.com/ubi9/python-311:9.7..." [build] time="2026-09-09T19:34:13Z" level=info msg="buildah [stderr] Getting image source signatures" [build] time="2026-09-09T19:34:13Z" level=info msg="buildah [stderr] Checking if image destination supports signatures" [build] time="2026-09-09T19:34:13Z" level=info msg="buildah [stderr] Copying blob sha256:b66ab30abd6c3aa6e70bb84e4b3f0025035459b0fa3fc0d28bb37e057cde7b50" [build] time="2026-09-09T19:34:13Z" level=info msg="buildah [stderr] Copying blob sha256:45b10115c57ace5faafc3bcd0e634280e70c95bd3c0a576df4aa121f3ec5fc49" [build] time="2026-09-09T19:34:13Z" level=info msg="buildah [stderr] Copying blob sha256:515628f1357fc4365a8cdbf2535620a8f2ad70bd4d8755fd5ecbc1e5171645f2" [build] time="2026-09-09T19:34:13Z" level=info msg="buildah [stderr] Copying blob sha256:2118fefecd7294918fa82547312fee454e5e7f39fa82dd5d7fd262d06ba68d8c" [build] time="2026-09-09T19:34:24Z" level=info msg="buildah [stderr] Copying config sha256:b2e11e28fd7ee11def737f274d1667cca595998442f20d4ae1734c240d9af377" [build] time="2026-09-09T19:34:25Z" level=info msg="buildah [stderr] Writing manifest to image destination" [build] time="2026-09-09T19:34:25Z" level=info msg="buildah [stderr] Storing signatures" [build] time="2026-09-09T19:34:25Z" level=info msg="buildah [stdout] b2e11e28fd7ee11def737f274d1667cca595998442f20d4ae1734c240d9af377" [build] time="2026-09-09T19:34:25Z" level=info msg="Injecting buildinfo: added labels.json" [build] time="2026-09-09T19:34:25Z" level=info msg="Injecting buildinfo: no prefetch SBOM found, not adding content-sets.json" [build] time="2026-09-09T19:34:25Z" level=info msg="Building container image..." [build] time="2026-09-09T19:34:25Z" 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-09T19:34:26Z" level=info msg="buildah [stdout] [1/2] STEP 2/24: WORKDIR /" [build] time="2026-09-09T19:34:26Z" level=info msg="buildah [stdout] [1/2] STEP 3/24: USER 0" [build] time="2026-09-09T19:34:26Z" level=info msg="buildah [stdout] [1/2] STEP 4/24: RUN dnf install -y --allowerasing gcc gcc-c++ make python3.11-devel && dnf clean all" [build] time="2026-09-09T19:34:26Z" level=info msg="buildah [stdout] Updating Subscription Management repositories." [build] time="2026-09-09T19:34:27Z" level=info msg="buildah [stdout] " [build] time="2026-09-09T19:34:27Z" 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-09T19:34:27Z" level=info msg="buildah [stdout] " [build] time="2026-09-09T19:34:29Z" level=info msg="buildah [stdout] Red Hat Enterprise Linux 9 for x86_64 - BaseOS 89 MB/s | 87 MB 00:00 " [build] time="2026-09-09T19:34:37Z" level=info msg="buildah [stdout] Red Hat Enterprise Linux 9 for x86_64 - AppStre 99 MB/s | 73 MB 00:00 " [build] time="2026-09-09T19:34:48Z" level=info msg="buildah [stdout] Red Hat Universal Base Image 9 (RPMs) - BaseOS 5.6 MB/s | 535 kB 00:00 " [build] time="2026-09-09T19:34:49Z" level=info msg="buildah [stdout] Red Hat Universal Base Image 9 (RPMs) - AppStre 30 MB/s | 2.9 MB 00:00 " [build] time="2026-09-09T19:34:49Z" level=info msg="buildah [stdout] Red Hat Universal Base Image 9 (RPMs) - CodeRea 6.9 MB/s | 471 kB 00:00 " [build] time="2026-09-09T19:34:52Z" level=info msg="buildah [stdout] Package gcc-11.5.0-11.el9.x86_64 is already installed." [build] time="2026-09-09T19:34:52Z" level=info msg="buildah [stdout] Package gcc-c++-11.5.0-11.el9.x86_64 is already installed." [build] time="2026-09-09T19:34:52Z" level=info msg="buildah [stdout] Package make-1:4.3-8.el9.x86_64 is already installed." [build] time="2026-09-09T19:34:52Z" 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-09T19:34:52Z" level=info msg="buildah [stdout] Dependencies resolved." [build] time="2026-09-09T19:34:52Z" level=info msg="buildah [stdout] ================================================================================" [build] time="2026-09-09T19:34:52Z" level=info msg="buildah [stdout] Package Arch Version Repository Size" [build] time="2026-09-09T19:34:52Z" level=info msg="buildah [stdout] ================================================================================" [build] time="2026-09-09T19:34:52Z" level=info msg="buildah [stdout] Upgrading:" [build] time="2026-09-09T19:34:52Z" level=info msg="buildah [stdout] cpp x86_64 11.5.0-14.el9 ubi-9-appstream-rpms 11 M" [build] time="2026-09-09T19:34:52Z" level=info msg="buildah [stdout] gcc x86_64 11.5.0-14.el9 ubi-9-appstream-rpms 32 M" [build] time="2026-09-09T19:34:52Z" level=info msg="buildah [stdout] gcc-c++ x86_64 11.5.0-14.el9 ubi-9-appstream-rpms 13 M" [build] time="2026-09-09T19:34:52Z" level=info msg="buildah [stdout] gcc-gfortran x86_64 11.5.0-14.el9 ubi-9-appstream-rpms 13 M" [build] time="2026-09-09T19:34:52Z" 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-09T19:34:52Z" level=info msg="buildah [stdout] libgcc x86_64 11.5.0-14.el9 ubi-9-baseos-rpms 85 k" [build] time="2026-09-09T19:34:52Z" level=info msg="buildah [stdout] libgfortran x86_64 11.5.0-14.el9 ubi-9-baseos-rpms 794 k" [build] time="2026-09-09T19:34:52Z" level=info msg="buildah [stdout] libgomp x86_64 11.5.0-14.el9 ubi-9-baseos-rpms 258 k" [build] time="2026-09-09T19:34:52Z" level=info msg="buildah [stdout] libquadmath x86_64 11.5.0-14.el9 ubi-9-baseos-rpms 184 k" [build] time="2026-09-09T19:34:52Z" level=info msg="buildah [stdout] libquadmath-devel x86_64 11.5.0-14.el9 ubi-9-appstream-rpms 25 k" [build] time="2026-09-09T19:34:52Z" level=info msg="buildah [stdout] libstdc++ x86_64 11.5.0-14.el9 ubi-9-baseos-rpms 745 k" [build] time="2026-09-09T19:34:52Z" 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-09T19:34:52Z" 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-09T19:34:52Z" 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-09T19:34:52Z" 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-09T19:34:52Z" level=info msg="buildah [stdout] sqlite x86_64 3.34.1-11.el9_8 ubi-9-appstream-rpms 764 k" [build] time="2026-09-09T19:34:52Z" 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-09T19:34:52Z" 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-09T19:34:52Z" level=info msg="buildah [stdout] " [build] time="2026-09-09T19:34:52Z" level=info msg="buildah [stdout] Transaction Summary" [build] time="2026-09-09T19:34:52Z" level=info msg="buildah [stdout] ================================================================================" [build] time="2026-09-09T19:34:52Z" level=info msg="buildah [stdout] Upgrade 18 Packages" [build] time="2026-09-09T19:34:52Z" level=info msg="buildah [stdout] " [build] time="2026-09-09T19:34:52Z" level=info msg="buildah [stdout] Total download size: 85 M" [build] time="2026-09-09T19:34:52Z" level=info msg="buildah [stdout] Downloading Packages:" [build] time="2026-09-09T19:34:52Z" level=info msg="buildah [stdout] (1/18): libgcc-11.5.0-14.el9.x86_64.rpm 2.2 MB/s | 85 kB 00:00 " [build] time="2026-09-09T19:34:52Z" level=info msg="buildah [stdout] (2/18): libgomp-11.5.0-14.el9.x86_64.rpm 6.4 MB/s | 258 kB 00:00 " [build] time="2026-09-09T19:34:52Z" level=info msg="buildah [stdout] (3/18): libgfortran-11.5.0-14.el9.x86_64.rpm 18 MB/s | 794 kB 00:00 " [build] time="2026-09-09T19:34:52Z" level=info msg="buildah [stdout] (4/18): libquadmath-11.5.0-14.el9.x86_64.rpm 19 MB/s | 184 kB 00:00 " [build] time="2026-09-09T19:34:52Z" level=info msg="buildah [stdout] (5/18): libstdc++-11.5.0-14.el9.x86_64.rpm 76 MB/s | 745 kB 00:00 " [build] time="2026-09-09T19:34:52Z" level=info msg="buildah [stdout] (6/18): sqlite-libs-3.34.1-11.el9_8.x86_64.rpm 26 MB/s | 650 kB 00:00 " [build] time="2026-09-09T19:34:52Z" level=info msg="buildah [stdout] (7/18): cpp-11.5.0-14.el9.x86_64.rpm 86 MB/s | 11 MB 00:00 " [build] time="2026-09-09T19:34:52Z" level=info msg="buildah [stdout] (8/18): gcc-c++-11.5.0-14.el9.x86_64.rpm 82 MB/s | 13 MB 00:00 " [build] time="2026-09-09T19:34:52Z" level=info msg="buildah [stdout] (9/18): gcc-plugin-annobin-11.5.0-14.el9.x86_64 11 MB/s | 37 kB 00:00 " [build] time="2026-09-09T19:34:52Z" level=info msg="buildah [stdout] (10/18): libquadmath-devel-11.5.0-14.el9.x86_64 8.3 MB/s | 25 kB 00:00 " [build] time="2026-09-09T19:34:52Z" level=info msg="buildah [stdout] (11/18): libstdc++-devel-11.5.0-14.el9.x86_64.r 79 MB/s | 2.4 MB 00:00 " [build] time="2026-09-09T19:34:52Z" level=info msg="buildah [stdout] (12/18): python3.11-3.11.13-10.el9_8.x86_64.rpm 8.4 MB/s | 31 kB 00:00 " [build] time="2026-09-09T19:34:52Z" level=info msg="buildah [stdout] (13/18): python3.11-devel-3.11.13-10.el9_8.x86_ 48 MB/s | 284 kB 00:00 " [build] time="2026-09-09T19:34:52Z" level=info msg="buildah [stdout] (14/18): gcc-gfortran-11.5.0-14.el9.x86_64.rpm 80 MB/s | 13 MB 00:00 " [build] time="2026-09-09T19:34:52Z" level=info msg="buildah [stdout] (15/18): sqlite-3.34.1-11.el9_8.x86_64.rpm 66 MB/s | 764 kB 00:00 " [build] time="2026-09-09T19:34:52Z" level=info msg="buildah [stdout] (16/18): sqlite-devel-3.34.1-11.el9_8.x86_64.rp 8.4 MB/s | 140 kB 00:00 " [build] time="2026-09-09T19:34:52Z" level=info msg="buildah [stdout] (17/18): python3.11-libs-3.11.13-10.el9_8.x86_6 88 MB/s | 10 MB 00:00 " [build] time="2026-09-09T19:34:52Z" level=info msg="buildah [stdout] (18/18): gcc-11.5.0-14.el9.x86_64.rpm 84 MB/s | 32 MB 00:00 " [build] time="2026-09-09T19:34:52Z" level=info msg="buildah [stdout] --------------------------------------------------------------------------------" [build] time="2026-09-09T19:34:52Z" level=info msg="buildah [stdout] Total 194 MB/s | 85 MB 00:00 " [build] time="2026-09-09T19:34:53Z" level=info msg="buildah [stdout] Running transaction check" [build] time="2026-09-09T19:34:53Z" level=info msg="buildah [stdout] Transaction check succeeded." [build] time="2026-09-09T19:34:53Z" level=info msg="buildah [stdout] Running transaction test" [build] time="2026-09-09T19:34:53Z" level=info msg="buildah [stdout] Transaction test succeeded." [build] time="2026-09-09T19:34:53Z" level=info msg="buildah [stdout] Running transaction" [build] time="2026-09-09T19:34:54Z" level=info msg="buildah [stdout] Preparing : 1/1 " [build] time="2026-09-09T19:34:54Z" level=info msg="buildah [stdout] Upgrading : libgcc-11.5.0-14.el9.x86_64 1/36 " [build] time="2026-09-09T19:34:54Z" level=info msg="buildah [stdout] Running scriptlet: libgcc-11.5.0-14.el9.x86_64 1/36 " [build] time="2026-09-09T19:34:54Z" level=info msg="buildah [stdout] Upgrading : libquadmath-11.5.0-14.el9.x86_64 2/36 " [build] time="2026-09-09T19:34:54Z" level=info msg="buildah [stdout] Upgrading : libstdc++-11.5.0-14.el9.x86_64 3/36 " [build] time="2026-09-09T19:34:54Z" level=info msg="buildah [stdout] Upgrading : sqlite-libs-3.34.1-11.el9_8.x86_64 4/36 " [build] time="2026-09-09T19:34:54Z" level=info msg="buildah [stdout] Upgrading : python3.11-3.11.13-10.el9_8.x86_64 5/36 " [build] time="2026-09-09T19:34:55Z" level=info msg="buildah [stdout] Upgrading : python3.11-libs-3.11.13-10.el9_8.x86_64 6/36 " [build] time="2026-09-09T19:34:55Z" level=info msg="buildah [stdout] Upgrading : sqlite-3.34.1-11.el9_8.x86_64 7/36 " [build] time="2026-09-09T19:34:55Z" level=info msg="buildah [stdout] Upgrading : libstdc++-devel-11.5.0-14.el9.x86_64 8/36 " [build] time="2026-09-09T19:34:55Z" level=info msg="buildah [stdout] Upgrading : libgfortran-11.5.0-14.el9.x86_64 9/36 " [build] time="2026-09-09T19:34:55Z" level=info msg="buildah [stdout] Upgrading : cpp-11.5.0-14.el9.x86_64 10/36 " [build] time="2026-09-09T19:34:55Z" level=info msg="buildah [stdout] Upgrading : libgomp-11.5.0-14.el9.x86_64 11/36 " [build] time="2026-09-09T19:34:55Z" level=info msg="buildah [stdout] Upgrading : gcc-11.5.0-14.el9.x86_64 12/36 " [build] time="2026-09-09T19:34:55Z" level=info msg="buildah [stdout] Running scriptlet: gcc-11.5.0-14.el9.x86_64 12/36 " [build] time="2026-09-09T19:34:55Z" level=info msg="buildah [stdout] Upgrading : libquadmath-devel-11.5.0-14.el9.x86_64 13/36 " [build] time="2026-09-09T19:34:55Z" level=info msg="buildah [stdout] Upgrading : gcc-gfortran-11.5.0-14.el9.x86_64 14/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Upgrading : gcc-c++-11.5.0-14.el9.x86_64 15/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Upgrading : gcc-plugin-annobin-11.5.0-14.el9.x86_64 16/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Running scriptlet: gcc-plugin-annobin-11.5.0-14.el9.x86_64 16/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Upgrading : sqlite-devel-3.34.1-11.el9_8.x86_64 17/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Upgrading : python3.11-devel-3.11.13-10.el9_8.x86_64 18/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Cleanup : gcc-gfortran-11.5.0-11.el9.x86_64 19/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Cleanup : libgfortran-11.5.0-11.el9.x86_64 20/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Cleanup : gcc-c++-11.5.0-11.el9.x86_64 21/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Cleanup : python3.11-devel-3.11.13-5.3.el9_7.x86_64 22/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Cleanup : gcc-plugin-annobin-11.5.0-11.el9.x86_64 23/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Running scriptlet: gcc-plugin-annobin-11.5.0-11.el9.x86_64 23/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Cleanup : libquadmath-devel-11.5.0-11.el9.x86_64 24/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Cleanup : sqlite-devel-3.34.1-9.el9_7.x86_64 25/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Cleanup : libstdc++-devel-11.5.0-11.el9.x86_64 26/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Cleanup : libstdc++-11.5.0-11.el9.x86_64 27/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Cleanup : gcc-11.5.0-11.el9.x86_64 28/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Cleanup : libquadmath-11.5.0-11.el9.x86_64 29/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Cleanup : python3.11-libs-3.11.13-5.3.el9_7.x86_64 30/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Cleanup : python3.11-3.11.13-5.3.el9_7.x86_64 31/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Cleanup : sqlite-3.34.1-9.el9_7.x86_64 32/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Cleanup : sqlite-libs-3.34.1-9.el9_7.x86_64 33/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Cleanup : libgcc-11.5.0-11.el9.x86_64 34/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Running scriptlet: libgcc-11.5.0-11.el9.x86_64 34/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Cleanup : cpp-11.5.0-11.el9.x86_64 35/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Cleanup : libgomp-11.5.0-11.el9.x86_64 36/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Running scriptlet: libgomp-11.5.0-11.el9.x86_64 36/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Verifying : libgcc-11.5.0-14.el9.x86_64 1/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Verifying : libgcc-11.5.0-11.el9.x86_64 2/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Verifying : libgfortran-11.5.0-14.el9.x86_64 3/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Verifying : libgfortran-11.5.0-11.el9.x86_64 4/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Verifying : libgomp-11.5.0-14.el9.x86_64 5/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Verifying : libgomp-11.5.0-11.el9.x86_64 6/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Verifying : libquadmath-11.5.0-14.el9.x86_64 7/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Verifying : libquadmath-11.5.0-11.el9.x86_64 8/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Verifying : libstdc++-11.5.0-14.el9.x86_64 9/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Verifying : libstdc++-11.5.0-11.el9.x86_64 10/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Verifying : sqlite-libs-3.34.1-11.el9_8.x86_64 11/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Verifying : sqlite-libs-3.34.1-9.el9_7.x86_64 12/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Verifying : cpp-11.5.0-14.el9.x86_64 13/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Verifying : cpp-11.5.0-11.el9.x86_64 14/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Verifying : gcc-11.5.0-14.el9.x86_64 15/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Verifying : gcc-11.5.0-11.el9.x86_64 16/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Verifying : gcc-c++-11.5.0-14.el9.x86_64 17/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Verifying : gcc-c++-11.5.0-11.el9.x86_64 18/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Verifying : gcc-gfortran-11.5.0-14.el9.x86_64 19/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Verifying : gcc-gfortran-11.5.0-11.el9.x86_64 20/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Verifying : gcc-plugin-annobin-11.5.0-14.el9.x86_64 21/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Verifying : gcc-plugin-annobin-11.5.0-11.el9.x86_64 22/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Verifying : libquadmath-devel-11.5.0-14.el9.x86_64 23/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Verifying : libquadmath-devel-11.5.0-11.el9.x86_64 24/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Verifying : libstdc++-devel-11.5.0-14.el9.x86_64 25/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Verifying : libstdc++-devel-11.5.0-11.el9.x86_64 26/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Verifying : python3.11-3.11.13-10.el9_8.x86_64 27/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Verifying : python3.11-3.11.13-5.3.el9_7.x86_64 28/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Verifying : python3.11-devel-3.11.13-10.el9_8.x86_64 29/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Verifying : python3.11-devel-3.11.13-5.3.el9_7.x86_64 30/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Verifying : python3.11-libs-3.11.13-10.el9_8.x86_64 31/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Verifying : python3.11-libs-3.11.13-5.3.el9_7.x86_64 32/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Verifying : sqlite-3.34.1-11.el9_8.x86_64 33/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Verifying : sqlite-3.34.1-9.el9_7.x86_64 34/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Verifying : sqlite-devel-3.34.1-11.el9_8.x86_64 35/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Verifying : sqlite-devel-3.34.1-9.el9_7.x86_64 36/36 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Installed products updated." [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Upgraded:" [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] cpp-11.5.0-14.el9.x86_64 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] gcc-11.5.0-14.el9.x86_64 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] gcc-c++-11.5.0-14.el9.x86_64 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] gcc-gfortran-11.5.0-14.el9.x86_64 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] gcc-plugin-annobin-11.5.0-14.el9.x86_64 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] libgcc-11.5.0-14.el9.x86_64 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] libgfortran-11.5.0-14.el9.x86_64 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] libgomp-11.5.0-14.el9.x86_64 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] libquadmath-11.5.0-14.el9.x86_64 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] libquadmath-devel-11.5.0-14.el9.x86_64 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] libstdc++-11.5.0-14.el9.x86_64 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] libstdc++-devel-11.5.0-14.el9.x86_64 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] python3.11-3.11.13-10.el9_8.x86_64 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] python3.11-devel-3.11.13-10.el9_8.x86_64 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] python3.11-libs-3.11.13-10.el9_8.x86_64 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] sqlite-3.34.1-11.el9_8.x86_64 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] sqlite-devel-3.34.1-11.el9_8.x86_64 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] sqlite-libs-3.34.1-11.el9_8.x86_64 " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] " [build] time="2026-09-09T19:34:56Z" level=info msg="buildah [stdout] Complete!" [build] time="2026-09-09T19:34:58Z" level=info msg="buildah [stdout] Updating Subscription Management repositories." [build] time="2026-09-09T19:34:59Z" level=info msg="buildah [stdout] " [build] time="2026-09-09T19:34:59Z" 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-09T19:34:59Z" level=info msg="buildah [stdout] " [build] time="2026-09-09T19:35:00Z" level=info msg="buildah [stdout] 43 files removed" [build] time="2026-09-09T19:35:00Z" 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-09T19:35:00Z" level=info msg="buildah [stderr] downloading uv 0.12.12 x86_64-unknown-linux-gnu" [build] time="2026-09-09T19:35:02Z" level=info msg="buildah [stdout] installing to /opt/app-root/src/.local/bin" [build] time="2026-09-09T19:35:02Z" level=info msg="buildah [stdout] uv" [build] time="2026-09-09T19:35:02Z" level=info msg="buildah [stdout] uvx" [build] time="2026-09-09T19:35:02Z" level=info msg="buildah [stdout] everything's installed!" [build] time="2026-09-09T19:35:02Z" level=info msg="buildah [stdout] " [build] time="2026-09-09T19:35:02Z" level=info msg="buildah [stdout] To add $HOME/.local/bin to your PATH, either restart your shell or run:" [build] time="2026-09-09T19:35:02Z" level=info msg="buildah [stdout] " [build] time="2026-09-09T19:35:02Z" level=info msg="buildah [stdout] source $HOME/.local/bin/env (sh, bash, zsh)" [build] time="2026-09-09T19:35:02Z" level=info msg="buildah [stdout] source $HOME/.local/bin/env.fish (fish)" [build] time="2026-09-09T19:35:02Z" level=info msg="buildah [stdout] [1/2] STEP 6/24: ARG VENV_PATH" [build] time="2026-09-09T19:35:02Z" level=info msg="buildah [stdout] [1/2] STEP 7/24: ENV VIRTUAL_ENV=${VENV_PATH}" [build] time="2026-09-09T19:35:02Z" level=info msg="buildah [stdout] [1/2] STEP 8/24: RUN uv venv $VIRTUAL_ENV" [build] time="2026-09-09T19:35:03Z" level=info msg="buildah [stderr] Using CPython 3.9.25 interpreter at: /usr/bin/python3" [build] time="2026-09-09T19:35:03Z" level=info msg="buildah [stderr] Creating virtual environment at: /prod_venv" [build] time="2026-09-09T19:35:03Z" level=info msg="buildah [stdout] [1/2] STEP 9/24: ENV PATH=\"$VIRTUAL_ENV/bin:$PATH\"" [build] time="2026-09-09T19:35:03Z" level=info msg="buildah [stdout] [1/2] STEP 10/24: COPY storage/pyproject.toml storage/uv.lock storage/" [build] time="2026-09-09T19:35:03Z" level=info msg="buildah [stdout] [1/2] STEP 11/24: COPY kserve/pyproject.toml kserve/uv.lock kserve/" [build] time="2026-09-09T19:35:03Z" level=info msg="buildah [stdout] [1/2] STEP 12/24: RUN cd kserve && uv sync --active --no-cache" [build] time="2026-09-09T19:35:03Z" level=info msg="buildah [stderr] Using CPython 3.11.13 interpreter at: /usr/bin/python3.11" [build] time="2026-09-09T19:35:03Z" level=info msg="buildah [stderr] Removed virtual environment at: /prod_venv" [build] time="2026-09-09T19:35:03Z" level=info msg="buildah [stderr] Creating virtual environment at: /prod_venv" [build] time="2026-09-09T19:35:03Z" level=info msg="buildah [stderr] Resolved 277 packages in 1ms" [build] time="2026-09-09T19:35:03Z" level=info msg="buildah [stderr] Building kserve @ file:///kserve" [build] time="2026-09-09T19:35:03Z" level=info msg="buildah [stderr] Downloading cryptography (4.5MiB)" [build] time="2026-09-09T19:35:03Z" level=info msg="buildah [stderr] Downloading kubernetes (1.9MiB)" [build] time="2026-09-09T19:35:03Z" level=info msg="buildah [stderr] Downloading pillow (6.6MiB)" [build] time="2026-09-09T19:35:03Z" level=info msg="buildah [stderr] Downloading uvloop (3.8MiB)" [build] time="2026-09-09T19:35:03Z" level=info msg="buildah [stderr] Downloading pydantic-core (2.0MiB)" [build] time="2026-09-09T19:35:03Z" level=info msg="buildah [stderr] Downloading grpcio-tools (2.5MiB)" [build] time="2026-09-09T19:35:03Z" level=info msg="buildah [stderr] Downloading pandas (12.5MiB)" [build] time="2026-09-09T19:35:03Z" level=info msg="buildah [stderr] Downloading setuptools (1.2MiB)" [build] time="2026-09-09T19:35:03Z" level=info msg="buildah [stderr] Downloading aiohttp (1.7MiB)" [build] time="2026-09-09T19:35:03Z" level=info msg="buildah [stderr] Downloading black (1.8MiB)" [build] time="2026-09-09T19:35:03Z" level=info msg="buildah [stderr] Downloading grpcio (6.4MiB)" [build] time="2026-09-09T19:35:03Z" level=info msg="buildah [stderr] Downloading numpy (15.7MiB)" [build] time="2026-09-09T19:35:04Z" level=info msg="buildah [stderr] Downloaded setuptools" [build] time="2026-09-09T19:35:04Z" level=info msg="buildah [stderr] Downloaded aiohttp" [build] time="2026-09-09T19:35:04Z" level=info msg="buildah [stderr] Downloaded pydantic-core" [build] time="2026-09-09T19:35:04Z" level=info msg="buildah [stderr] Downloaded black" [build] time="2026-09-09T19:35:04Z" level=info msg="buildah [stderr] Downloaded grpcio-tools" [build] time="2026-09-09T19:35:04Z" level=info msg="buildah [stderr] Downloaded uvloop" [build] time="2026-09-09T19:35:04Z" level=info msg="buildah [stderr] Downloaded cryptography" [build] time="2026-09-09T19:35:04Z" level=info msg="buildah [stderr] Downloaded pillow" [build] time="2026-09-09T19:35:04Z" level=info msg="buildah [stderr] Downloaded kubernetes" [build] time="2026-09-09T19:35:04Z" level=info msg="buildah [stderr] Downloaded grpcio" [build] time="2026-09-09T19:35:04Z" level=info msg="buildah [stderr] Downloaded numpy" [build] time="2026-09-09T19:35:04Z" level=info msg="buildah [stderr] Downloaded pandas" [build] time="2026-09-09T19:35:05Z" level=info msg="buildah [stderr] Built kserve @ file:///kserve" [build] time="2026-09-09T19:35:05Z" level=info msg="buildah [stderr] Prepared 76 packages in 1.81s" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] Installed 76 packages in 2.93s" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + aiohappyeyeballs==2.6.1" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + aiohttp==3.14.1" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + aiosignal==1.4.0" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + annotated-doc==0.0.4" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + annotated-types==0.7.0" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + anyio==4.9.0" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + attrs==25.3.0" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + black==26.5.1" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + cachetools==5.5.2" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + certifi==2025.1.31" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + cffi==2.0.0" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + charset-normalizer==3.4.1" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + click==8.4.2" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + cloudevents==1.11.0" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + colorama==0.4.6" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + cryptography==50.0.0" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + deprecation==2.1.0" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + durationpy==0.9" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + fastapi==0.136.3" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + frozenlist==1.5.0" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + google-auth==2.39.0" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + grpc-interceptor==0.15.4" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + grpcio==1.78.1" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + grpcio-tools==1.78.1" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + h11==0.16.0" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + httpcore==1.0.9" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + httptools==0.6.4" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + httpx==0.27.2" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + idna==3.10" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + kserve==0.20.0 (from file:///kserve)" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + kubernetes==32.0.1" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + multidict==6.4.3" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + mypy-extensions==1.0.0" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + numpy==2.2.4" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + oauthlib==3.2.2" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + orjson==3.11.9" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + packaging==24.2" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + pandas==2.2.3" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + pathspec==1.1.1" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + pillow==12.3.0" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + platformdirs==4.3.7" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + prometheus-client==0.21.1" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + propcache==0.3.1" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + protobuf==6.33.5" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + psutil==5.9.8" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + pyasn1==0.6.4" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + pyasn1-modules==0.4.2" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + pycparser==2.22" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + pydantic==2.12.4" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + pydantic-core==2.41.5" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + pyjwt==2.13.0" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + python-dateutil==2.9.0.post0" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + python-dotenv==1.1.0" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + python-multipart==0.0.32" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + pytokens==0.4.1" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + pytz==2025.2" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + pyyaml==6.0.2" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + requests==2.32.3" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + requests-oauthlib==2.0.0" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + rsa==4.9.1" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + setuptools==78.1.1" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + six==1.17.0" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + sniffio==1.3.1" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + starlette==1.2.1" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + tabulate==0.9.0" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + timing-asgi==0.3.1" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + typing-extensions==4.15.0" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + typing-inspection==0.4.2" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + tzdata==2025.2" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + urllib3==2.7.0" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + uvicorn==0.34.1" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + uvloop==0.21.0" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + watchfiles==1.0.5" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + websocket-client==1.8.0" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + websockets==15.0.1" [build] time="2026-09-09T19:35:08Z" level=info msg="buildah [stderr] + yarl==1.20.0" [build] time="2026-09-09T19:35:09Z" level=info msg="buildah [stdout] [1/2] STEP 13/24: COPY kserve kserve" [build] time="2026-09-09T19:35:09Z" level=info msg="buildah [stdout] [1/2] STEP 14/24: RUN cd kserve && uv sync --active --no-cache" [build] time="2026-09-09T19:35:09Z" level=info msg="buildah [stderr] Resolved 277 packages in 1ms" [build] time="2026-09-09T19:35:09Z" level=info msg="buildah [stderr] Building kserve @ file:///kserve" [build] time="2026-09-09T19:35:10Z" level=info msg="buildah [stderr] Built kserve @ file:///kserve" [build] time="2026-09-09T19:35:10Z" level=info msg="buildah [stderr] Prepared 1 package in 1.21s" [build] time="2026-09-09T19:35:10Z" level=info msg="buildah [stderr] Uninstalled 1 package in 0.41ms" [build] time="2026-09-09T19:35:10Z" level=info msg="buildah [stderr] Installed 1 package in 7ms" [build] time="2026-09-09T19:35:10Z" level=info msg="buildah [stderr] ~ kserve==0.20.0 (from file:///kserve)" [build] time="2026-09-09T19:35:10Z" level=info msg="buildah [stdout] [1/2] STEP 15/24: COPY storage storage" [build] time="2026-09-09T19:35:10Z" level=info msg="buildah [stdout] [1/2] STEP 16/24: RUN cd storage && uv pip install . --no-cache" [build] time="2026-09-09T19:35:11Z" level=info msg="buildah [stderr] Using Python 3.11.13 environment at: /prod_venv" [build] time="2026-09-09T19:35:11Z" level=info msg="buildah [stderr] Resolved 65 packages in 335ms" [build] time="2026-09-09T19:35:11Z" level=info msg="buildah [stderr] Building kserve-storage @ file:///storage" [build] time="2026-09-09T19:35:11Z" level=info msg="buildah [stderr] Downloading hf-xet (4.3MiB)" [build] time="2026-09-09T19:35:11Z" level=info msg="buildah [stderr] Downloading dulwich (1.4MiB)" [build] time="2026-09-09T19:35:11Z" level=info msg="buildah [stderr] Downloading botocore (15.1MiB)" [build] time="2026-09-09T19:35:11Z" level=info msg="buildah [stderr] Downloaded dulwich" [build] time="2026-09-09T19:35:11Z" level=info msg="buildah [stderr] Downloaded hf-xet" [build] time="2026-09-09T19:35:11Z" level=info msg="buildah [stderr] Downloaded botocore" [build] time="2026-09-09T19:35:12Z" level=info msg="buildah [stderr] Built kserve-storage @ file:///storage" [build] time="2026-09-09T19:35:12Z" level=info msg="buildah [stderr] Prepared 31 packages in 1.16s" [build] time="2026-09-09T19:35:15Z" level=info msg="buildah [stderr] Installed 31 packages in 2.61s" [build] time="2026-09-09T19:35:15Z" level=info msg="buildah [stderr] + azure-core==1.41.0" [build] time="2026-09-09T19:35:15Z" level=info msg="buildah [stderr] + azure-identity==1.25.3" [build] time="2026-09-09T19:35:15Z" level=info msg="buildah [stderr] + azure-storage-blob==12.30.1" [build] time="2026-09-09T19:35:15Z" level=info msg="buildah [stderr] + azure-storage-file-share==12.26.0" [build] time="2026-09-09T19:35:15Z" level=info msg="buildah [stderr] + boto3==1.43.91" [build] time="2026-09-09T19:35:15Z" level=info msg="buildah [stderr] + botocore==1.43.91" [build] time="2026-09-09T19:35:15Z" level=info msg="buildah [stderr] + dulwich==1.2.14" [build] time="2026-09-09T19:35:15Z" level=info msg="buildah [stderr] + filelock==3.32.6" [build] time="2026-09-09T19:35:15Z" level=info msg="buildah [stderr] + fsspec==2026.7.0" [build] time="2026-09-09T19:35:15Z" level=info msg="buildah [stderr] + google-api-core==2.30.3" [build] time="2026-09-09T19:35:15Z" level=info msg="buildah [stderr] + google-cloud-core==2.7.0" [build] time="2026-09-09T19:35:15Z" level=info msg="buildah [stderr] + google-cloud-storage==2.19.0" [build] time="2026-09-09T19:35:15Z" level=info msg="buildah [stderr] + google-crc32c==1.8.0" [build] time="2026-09-09T19:35:15Z" level=info msg="buildah [stderr] + google-resumable-media==2.10.2" [build] time="2026-09-09T19:35:15Z" level=info msg="buildah [stderr] + googleapis-common-protos==1.75.3" [build] time="2026-09-09T19:35:15Z" level=info msg="buildah [stderr] + hf-xet==1.6.0" [build] time="2026-09-09T19:35:15Z" level=info msg="buildah [stderr] + huggingface-hub==1.30.0" [build] time="2026-09-09T19:35:15Z" level=info msg="buildah [stderr] + isodate==0.7.2" [build] time="2026-09-09T19:35:15Z" level=info msg="buildah [stderr] + jmespath==1.1.0" [build] time="2026-09-09T19:35:15Z" level=info msg="buildah [stderr] + jsonschema==4.26.0" [build] time="2026-09-09T19:35:15Z" level=info msg="buildah [stderr] + jsonschema-specifications==2025.9.1" [build] time="2026-09-09T19:35:15Z" level=info msg="buildah [stderr] + kserve-storage==0.20.0 (from file:///storage)" [build] time="2026-09-09T19:35:15Z" level=info msg="buildah [stderr] + modelscope-hub==0.4.1" [build] time="2026-09-09T19:35:15Z" level=info msg="buildah [stderr] + msal==1.38.0" [build] time="2026-09-09T19:35:15Z" level=info msg="buildah [stderr] + msal-extensions==1.3.1" [build] time="2026-09-09T19:35:15Z" level=info msg="buildah [stderr] + oras==0.2.43" [build] time="2026-09-09T19:35:15Z" level=info msg="buildah [stderr] + proto-plus==1.28.4" [build] time="2026-09-09T19:35:15Z" level=info msg="buildah [stderr] + referencing==0.37.0" [build] time="2026-09-09T19:35:15Z" level=info msg="buildah [stderr] + rpds-py==2026.6.3" [build] time="2026-09-09T19:35:15Z" level=info msg="buildah [stderr] + s3transfer==0.19.2" [build] time="2026-09-09T19:35:15Z" level=info msg="buildah [stderr] + tqdm==4.70.0" [build] time="2026-09-09T19:35:15Z" level=info msg="buildah [stderr] warning: The package `huggingface-hub==1.30.0` does not have an extra named `hf-transfer`" [build] time="2026-09-09T19:35:15Z" level=info msg="buildah [stdout] [1/2] STEP 17/24: COPY sklearnserver/pyproject.toml sklearnserver/uv.lock sklearnserver/" [build] time="2026-09-09T19:35:15Z" level=info msg="buildah [stdout] [1/2] STEP 18/24: RUN cd sklearnserver && uv sync --active --no-cache" [build] time="2026-09-09T19:35:15Z" level=info msg="buildah [stderr] Resolved 128 packages in 1ms" [build] time="2026-09-09T19:35:15Z" level=info msg="buildah [stderr] Building kserve-storage @ file:///storage" [build] time="2026-09-09T19:35:15Z" level=info msg="buildah [stderr] Building kserve @ file:///kserve" [build] time="2026-09-09T19:35:16Z" level=info msg="buildah [stderr] Downloading grpcio-tools (2.5MiB)" [build] time="2026-09-09T19:35:16Z" level=info msg="buildah [stderr] Downloading aiohttp (1.7MiB)" [build] time="2026-09-09T19:35:16Z" level=info msg="buildah [stderr] Downloading pandas (12.2MiB)" [build] time="2026-09-09T19:35:16Z" level=info msg="buildah [stderr] Downloading numpy (16.1MiB)" [build] time="2026-09-09T19:35:16Z" level=info msg="buildah [stderr] Downloading pydantic-core (2.0MiB)" [build] time="2026-09-09T19:35:16Z" level=info msg="buildah [stderr] Downloading pygments (1.2MiB)" [build] time="2026-09-09T19:35:16Z" level=info msg="buildah [stderr] Downloading hf-xet (4.3MiB)" [build] time="2026-09-09T19:35:16Z" level=info msg="buildah [stderr] Downloading kubernetes (1.9MiB)" [build] time="2026-09-09T19:35:16Z" level=info msg="buildah [stderr] Downloading botocore (14.3MiB)" [build] time="2026-09-09T19:35:16Z" level=info msg="buildah [stderr] Downloading scikit-learn (12.7MiB)" [build] time="2026-09-09T19:35:16Z" level=info msg="buildah [stderr] Downloading grpcio (6.5MiB)" [build] time="2026-09-09T19:35:16Z" level=info msg="buildah [stderr] Downloading uvloop (3.6MiB)" [build] time="2026-09-09T19:35:16Z" level=info msg="buildah [stderr] Downloading dulwich (1.5MiB)" [build] time="2026-09-09T19:35:16Z" level=info msg="buildah [stderr] Downloading scipy (33.7MiB)" [build] time="2026-09-09T19:35:16Z" level=info msg="buildah [stderr] Downloaded dulwich" [build] time="2026-09-09T19:35:16Z" level=info msg="buildah [stderr] Downloaded pygments" [build] time="2026-09-09T19:35:16Z" level=info msg="buildah [stderr] Downloaded aiohttp" [build] time="2026-09-09T19:35:16Z" level=info msg="buildah [stderr] Downloaded pydantic-core" [build] time="2026-09-09T19:35:16Z" level=info msg="buildah [stderr] Downloaded grpcio-tools" [build] time="2026-09-09T19:35:16Z" level=info msg="buildah [stderr] Downloaded kubernetes" [build] time="2026-09-09T19:35:16Z" level=info msg="buildah [stderr] Downloaded uvloop" [build] time="2026-09-09T19:35:16Z" level=info msg="buildah [stderr] Downloaded hf-xet" [build] time="2026-09-09T19:35:16Z" level=info msg="buildah [stderr] Downloaded grpcio" [build] time="2026-09-09T19:35:16Z" level=info msg="buildah [stderr] Downloaded scikit-learn" [build] time="2026-09-09T19:35:16Z" level=info msg="buildah [stderr] Downloaded botocore" [build] time="2026-09-09T19:35:16Z" level=info msg="buildah [stderr] Downloaded numpy" [build] time="2026-09-09T19:35:16Z" level=info msg="buildah [stderr] Downloaded pandas" [build] time="2026-09-09T19:35:16Z" level=info msg="buildah [stderr] Downloaded scipy" [build] time="2026-09-09T19:35:17Z" level=info msg="buildah [stderr] Built kserve-storage @ file:///storage" [build] time="2026-09-09T19:35:17Z" level=info msg="buildah [stderr] Built kserve @ file:///kserve" [build] time="2026-09-09T19:35:17Z" level=info msg="buildah [stderr] Prepared 77 packages in 1.71s" [build] time="2026-09-09T19:35:18Z" level=info msg="buildah [stderr] Uninstalled 70 packages in 494ms" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] Installed 77 packages in 4.19s" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - aiohttp==3.14.1" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + aiohttp==3.13.5" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - anyio==4.9.0" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + anyio==4.13.0" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - attrs==25.3.0" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + attrs==26.1.0" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - azure-core==1.41.0" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + azure-core==1.39.0" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - azure-storage-blob==12.30.1" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + azure-storage-blob==12.28.0" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - azure-storage-file-share==12.26.0" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + azure-storage-file-share==12.24.0" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - boto3==1.43.91" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + boto3==1.42.97" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - botocore==1.43.91" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + botocore==1.42.97" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - cachetools==5.5.2" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - certifi==2025.1.31" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + certifi==2026.4.22" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - charset-normalizer==3.4.1" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + charset-normalizer==3.4.7" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - click==8.4.2" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + click==8.3.3" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - cloudevents==1.11.0" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + cloudevents==1.12.1" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - dulwich==1.2.14" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + dulwich==1.2.10" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - durationpy==0.9" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + durationpy==0.10" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - fastapi==0.136.3" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + fastapi==0.136.1" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - filelock==3.32.6" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + filelock==3.29.0" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - frozenlist==1.5.0" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + frozenlist==1.8.0" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - fsspec==2026.7.0" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + fsspec==2026.3.0" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - google-auth==2.39.0" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + google-auth==2.49.2" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - google-cloud-core==2.7.0" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + google-cloud-core==2.5.1" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - google-resumable-media==2.10.2" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + google-resumable-media==2.8.2" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - googleapis-common-protos==1.75.3" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + googleapis-common-protos==1.74.0" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - grpcio==1.78.1" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + grpcio==1.80.0" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - grpcio-tools==1.78.1" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + grpcio-tools==1.80.0" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - hf-xet==1.6.0" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + hf-xet==1.5.1" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - httptools==0.6.4" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + httptools==0.7.1" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - httpx==0.27.2" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + httpx==0.28.1" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - huggingface-hub==1.30.0" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + huggingface-hub==1.12.0" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - idna==3.10" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + idna==3.13" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + joblib==1.5.3" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] ~ kserve==0.20.0 (from file:///kserve)" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] ~ kserve-storage==0.20.0 (from file:///storage)" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - kubernetes==32.0.1" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + kubernetes==35.0.0" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + markdown-it-py==4.0.0" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + mdurl==0.1.2" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - modelscope-hub==0.4.1" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + modelscope-hub==0.2.0" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - msal==1.38.0" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + msal==1.37.0" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - multidict==6.4.3" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + multidict==6.7.1" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - mypy-extensions==1.0.0" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + mypy-extensions==1.1.0" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - numpy==2.2.4" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + numpy==2.4.4" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - oauthlib==3.2.2" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + oauthlib==3.3.1" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - oras==0.2.43" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + oras==0.2.42" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - orjson==3.11.9" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + orjson==3.11.8" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - packaging==24.2" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + packaging==26.2" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - pandas==2.2.3" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + pandas==2.3.3" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - platformdirs==4.3.7" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + platformdirs==4.9.6" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - prometheus-client==0.21.1" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + prometheus-client==0.25.0" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - propcache==0.3.1" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + propcache==0.4.1" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - proto-plus==1.28.4" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + proto-plus==1.27.2" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - protobuf==6.33.5" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + protobuf==6.33.6" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - pycparser==2.22" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + pycparser==3.0" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - pydantic==2.12.4" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + pydantic==2.13.3" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - pydantic-core==2.41.5" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + pydantic-core==2.46.3" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + pygments==2.20.0" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - python-dotenv==1.1.0" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + python-dotenv==1.2.2" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - pytz==2025.2" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + pytz==2026.1.post1" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - pyyaml==6.0.2" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + pyyaml==6.0.3" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - requests==2.32.3" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + requests==2.33.1" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + rich==15.0.0" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - rpds-py==2026.6.3" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + rpds-py==2026.5.1" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - rsa==4.9.1" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - s3transfer==0.19.2" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + s3transfer==0.16.1" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + scikit-learn==1.5.2" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + scipy==1.17.1" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - setuptools==78.1.1" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + setuptools==82.0.1" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + shellingham==1.5.4" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - sniffio==1.3.1" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - tabulate==0.9.0" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + tabulate==0.10.0" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + threadpoolctl==3.6.0" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - timing-asgi==0.3.1" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + timing-asgi==0.3.2" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - tqdm==4.70.0" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + tqdm==4.67.3" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + typer==0.25.0" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - tzdata==2025.2" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + tzdata==2026.2" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - uvicorn==0.34.1" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + uvicorn==0.46.0" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - uvloop==0.21.0" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + uvloop==0.22.1" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - watchfiles==1.0.5" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + watchfiles==1.1.1" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - websocket-client==1.8.0" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + websocket-client==1.9.0" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - websockets==15.0.1" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + websockets==16.0" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] - yarl==1.20.0" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stderr] + yarl==1.23.0" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stdout] [1/2] STEP 19/24: COPY sklearnserver sklearnserver" [build] time="2026-09-09T19:35:22Z" level=info msg="buildah [stdout] [1/2] STEP 20/24: RUN cd sklearnserver && uv sync --active --no-cache" [build] time="2026-09-09T19:35:23Z" level=info msg="buildah [stderr] Resolved 128 packages in 1ms" [build] time="2026-09-09T19:35:23Z" level=info msg="buildah [stderr] Checked 114 packages in 52ms" [build] time="2026-09-09T19:35:23Z" level=info msg="buildah [stdout] [1/2] STEP 21/24: COPY pyproject.toml pyproject.toml" [build] time="2026-09-09T19:35:23Z" level=info msg="buildah [stdout] [1/2] STEP 22/24: COPY third_party/pip-licenses.py pip-licenses.py" [build] time="2026-09-09T19:35:23Z" level=info msg="buildah [stdout] [1/2] STEP 23/24: RUN pip install --no-cache-dir tomli" [build] time="2026-09-09T19:35:24Z" level=info msg="buildah [stdout] Collecting tomli" [build] time="2026-09-09T19:35:24Z" 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-09T19:35:24Z" 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-09T19:35:24Z" level=info msg="buildah [stdout] Installing collected packages: tomli" [build] time="2026-09-09T19:35:24Z" level=info msg="buildah [stdout] Successfully installed tomli-2.4.1" [build] time="2026-09-09T19:35:24Z" level=info msg="buildah [stderr] " [build] time="2026-09-09T19:35:24Z" level=info msg="buildah [stderr] [notice] A new release of pip is available: 24.2 -> 26.2.1" [build] time="2026-09-09T19:35:24Z" level=info msg="buildah [stderr] [notice] To update, run: pip install --upgrade pip" [build] time="2026-09-09T19:35:24Z" level=info msg="buildah [stdout] [1/2] STEP 24/24: RUN mkdir -p third_party/library && python3 pip-licenses.py" [build] time="2026-09-09T19:35:24Z" level=info msg="buildah [stderr] 2026-09-09 19:35:24,743 [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-09T19:35:25Z" level=info msg="buildah [stdout] [2/2] STEP 1/18: FROM registry.access.redhat.com/ubi9/python-311:9.7 AS prod" [build] time="2026-09-09T19:35:25Z" level=info msg="buildah [stdout] [2/2] STEP 2/18: WORKDIR /" [build] time="2026-09-09T19:35:25Z" level=info msg="buildah [stdout] [2/2] STEP 3/18: ARG VENV_PATH" [build] time="2026-09-09T19:35:25Z" level=info msg="buildah [stdout] [2/2] STEP 4/18: ENV VIRTUAL_ENV=${VENV_PATH}" [build] time="2026-09-09T19:35:26Z" level=info msg="buildah [stdout] [2/2] STEP 5/18: ENV PATH=\"$VIRTUAL_ENV/bin:$PATH\"" [build] time="2026-09-09T19:35:26Z" level=info msg="buildah [stdout] [2/2] STEP 6/18: USER 0" [build] time="2026-09-09T19:35:26Z" level=info msg="buildah [stdout] [2/2] STEP 7/18: RUN useradd kserve -m -u 1000 -d /home/kserve" [build] time="2026-09-09T19:35:26Z" level=info msg="buildah [stdout] [2/2] STEP 8/18: COPY --from=builder --chown=kserve:kserve third_party third_party" [build] time="2026-09-09T19:35:26Z" level=info msg="buildah [stdout] [2/2] STEP 9/18: COPY --from=builder --chown=kserve:kserve $VIRTUAL_ENV $VIRTUAL_ENV" [build] time="2026-09-09T19:35:37Z" level=info msg="buildah [stdout] [2/2] STEP 10/18: COPY --from=builder kserve kserve" [build] time="2026-09-09T19:35:38Z" level=info msg="buildah [stdout] [2/2] STEP 11/18: COPY --from=builder storage storage" [build] time="2026-09-09T19:35:38Z" level=info msg="buildah [stdout] [2/2] STEP 12/18: COPY --from=builder sklearnserver sklearnserver" [build] time="2026-09-09T19:35:38Z" level=info msg="buildah [stdout] [2/2] STEP 13/18: USER 1000" [build] time="2026-09-09T19:35:38Z" level=info msg="buildah [stdout] [2/2] STEP 14/18: ENV PYTHONPATH=/sklearnserver" [build] time="2026-09-09T19:35:38Z" level=info msg="buildah [stdout] [2/2] STEP 15/18: ENTRYPOINT [\"python\", \"-m\", \"sklearnserver\"]" [build] time="2026-09-09T19:35:38Z" level=info msg="buildah [stdout] [2/2] STEP 16/18: COPY --from=.konflux-buildinfo . /usr/share/buildinfo/" [build] time="2026-09-09T19:35:38Z" level=info msg="buildah [stdout] [2/2] STEP 17/18: COPY --from=.konflux-buildinfo . /root/buildinfo/" [build] time="2026-09-09T19:35:38Z" level=info msg="buildah [stdout] [2/2] STEP 18/18: LABEL \"org.opencontainers.image.created\"=\"2026-09-09T19:34:04Z\" \"org.opencontainers.image.revision\"=\"3847189fcb1bd61eb1a15ae36e34f167a3dc2b44\" \"build-date\"=\"2026-09-09T19:34:04Z\" \"architecture\"=\"x86_64\" \"vcs-ref\"=\"3847189fcb1bd61eb1a15ae36e34f167a3dc2b44\" \"vcs-type\"=\"git\" \"git.url\"=\"https://github.com/Jooho/kserve\" \"git.commit\"=\"3847189fcb1bd61eb1a15ae36e34f167a3dc2b44\"" [build] time="2026-09-09T19:35:38Z" level=info msg="buildah [stdout] [2/2] COMMIT quay.io/opendatahub/sklearn-serving-runtime:odh-pr-1907" [build] time="2026-09-09T19:35:47Z" level=info msg="buildah [stdout] --> ae5d5d9040e7" [build] time="2026-09-09T19:35:47Z" level=info msg="buildah [stdout] Successfully tagged quay.io/opendatahub/sklearn-serving-runtime:odh-pr-1907" [build] time="2026-09-09T19:35:49Z" level=info msg="buildah [stdout] ae5d5d9040e75d974ec946258575cd1f4fcf7ccd6b634e423d7227e24c361f31" [build] time="2026-09-09T19:36:00Z" level=info msg="Build completed successfully" [build] time="2026-09-09T19:36:00Z" level=info msg="Writing parsed Containerfile to: /shared/parsed_dockerfile.json" [build] time="2026-09-09T19:36:00Z" level=info msg="Containerfile JSON written successfully" [build] time="2026-09-09T19:36:00Z" level=info msg="Writing resolved base images to: /shared/base_images_digests" [build] time="2026-09-09T19:36:00Z" level=info msg="Resolved base images written successfully" [build] {"image_url":"quay.io/opendatahub/sklearn-serving-runtime:odh-pr-1907"}[2026-09-09T19:36:01,288115687+00:00] Add metadata [build] Getting image source signatures [build] Copying blob sha256:f1ba93d848741fa6c81c33d905ee5296b0181a3c1d9073d6bdef18b0fa40f812 [build] Copying blob sha256:195d3036adb0dad0f63d128dcc157659da4433cefb1846e5f70b5963c14fb36a [build] Copying blob sha256:2a77e49aac5d8d6ddb1dd1e8bec5dc4fa8dfa50df24d8235c9f1362ae38bd971 [build] Copying blob sha256:c4ef2d294465b7aa7ffbfa9ee3ffbb9db5cc6dba7e3abbfb4479b1af72352975 [build] Copying blob sha256:d29ec1216ef4fa2ee16adbe4aa50828cb8108603df693ab16aabdc0a4abc3f13 [build] Copying config sha256:ae5d5d9040e75d974ec946258575cd1f4fcf7ccd6b634e423d7227e24c361f31 [build] Writing manifest to image destination [build] [2026-09-09T19:36:09,505403951+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-09T19:36:09,507495823+00:00] Final touches [build] [build] buildah images [build] REPOSITORY TAG IMAGE ID CREATED SIZE [build] quay.io/opendatahub/sklearn-serving-runtime odh-pr-1907 ae5d5d9040e7 31 seconds ago 1.58 GB [build] registry.access.redhat.com/ubi9/python-311 9.7 b2e11e28fd7e 3 months ago 1.1 GB [build] echo "[$(date --utc -Ins)] End remote" [build] [2026-09-09T19:36:09,531900597+00:00] End remote [push] [2026-09-09T19:36:10,040406023+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-09T19:36:14,952485534+00:00] Convert image [push] [2026-09-09T19:36:14,954282487+00:00] Push image with unique tag [push] Pushing to quay.io/opendatahub/sklearn-serving-runtime:kserve-group-test-hhp89-build-sklearn-serving-runtime [push] [retry] executing: buildah push --format=docker --retry 3 --tls-verify=true quay.io/opendatahub/sklearn-serving-runtime:odh-pr-1907 docker://quay.io/opendatahub/sklearn-serving-runtime:kserve-group-test-hhp89-build-sklearn-serving-runtime [push] Getting image source signatures [push] Copying blob sha256:2a77e49aac5d8d6ddb1dd1e8bec5dc4fa8dfa50df24d8235c9f1362ae38bd971 [push] Copying blob sha256:f1ba93d848741fa6c81c33d905ee5296b0181a3c1d9073d6bdef18b0fa40f812 [push] Copying blob sha256:195d3036adb0dad0f63d128dcc157659da4433cefb1846e5f70b5963c14fb36a [push] Copying blob sha256:d29ec1216ef4fa2ee16adbe4aa50828cb8108603df693ab16aabdc0a4abc3f13 [push] Copying blob sha256:c4ef2d294465b7aa7ffbfa9ee3ffbb9db5cc6dba7e3abbfb4479b1af72352975 [push] Copying config sha256:ae5d5d9040e75d974ec946258575cd1f4fcf7ccd6b634e423d7227e24c361f31 [push] Writing manifest to image destination [push] [2026-09-09T19:36:37,120433312+00:00] Push image with git revision [push] Pushing to quay.io/opendatahub/sklearn-serving-runtime:odh-pr-1907 [push] [retry] executing: buildah push --format=docker --retry 3 --tls-verify=true --digestfile /var/workdir/image-digest quay.io/opendatahub/sklearn-serving-runtime:odh-pr-1907 docker://quay.io/opendatahub/sklearn-serving-runtime:odh-pr-1907 [push] Getting image source signatures [push] Copying blob sha256:f1ba93d848741fa6c81c33d905ee5296b0181a3c1d9073d6bdef18b0fa40f812 [push] Copying blob sha256:2a77e49aac5d8d6ddb1dd1e8bec5dc4fa8dfa50df24d8235c9f1362ae38bd971 [push] Copying blob sha256:195d3036adb0dad0f63d128dcc157659da4433cefb1846e5f70b5963c14fb36a [push] Copying blob sha256:d29ec1216ef4fa2ee16adbe4aa50828cb8108603df693ab16aabdc0a4abc3f13 [push] Copying blob sha256:c4ef2d294465b7aa7ffbfa9ee3ffbb9db5cc6dba7e3abbfb4479b1af72352975 [push] Copying config sha256:ae5d5d9040e75d974ec946258575cd1f4fcf7ccd6b634e423d7227e24c361f31 [push] Writing manifest to image destination [push] sha256:6ceb8d3eae45adbe3a7ed5eaa78e13fbacbd37aebb6884b2cc639b36b677aeaequay.io/opendatahub/sklearn-serving-runtime:odh-pr-1907 [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-09T19:36:38,315995718+00:00] End push [sbom-syft-generate] [2026-09-09T19:36:39,185324467+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-09T19:37:08,953212291+00:00] End sbom-syft-generate [prepare-sboms] [2026-09-09T19:37:09,453186230+00:00] Prepare SBOM [prepare-sboms] [2026-09-09T19:37:09,511945503+00:00] Generate SBOM with mobster [prepare-sboms] Skipping SBOM validation [prepare-sboms] 2026-09-09 19:37:21,212 [INFO] mobster.log: Logging level set to 20 [prepare-sboms] 2026-09-09 19:37:30,613 [INFO] mobster.oci: Fetching manifest for registry.access.redhat.com/ubi9/python-311@sha256:de8a3132505ea3aabc0133dab66aae1e45cc967edbf399477a771e18cf0c34e8 [prepare-sboms] 2026-09-09 19:37:32,109 [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-09 19:37:34,311 [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/sklearn-serving-runtime@sha256:6ceb8d3eae45adbe3a7ed5eaa78e13fbacbd37aebb6884b2cc639b36b677aeae-f61eff5d-048b-46dd-8d05-3908e6552958", "component_packages": {"total": 1319, "matched": 666, "unmatched_all": 653, "unmatched_component_only": 645, "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-09 19:37:34,406 [INFO] mobster.cmd.generate.oci_image: Contextual SBOM workflow finished successfully. [prepare-sboms] 2026-09-09 19:37:34,406 [INFO] mobster.log: Contextual workflow completed in 6.80s [prepare-sboms] 2026-09-09 19:37:38,713 [INFO] mobster.main: Exiting with code 0. [prepare-sboms] [2026-09-09T19:37:39,810893068+00:00] End prepare-sboms [upload-sbom] [2026-09-09T19:37:40,769778519+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/sklearn-serving-runtime [upload-sbom] Pushing sbom to registry [upload-sbom] [retry] executing: cosign attach sbom --sbom sbom.json --type spdx quay.io/opendatahub/sklearn-serving-runtime:odh-pr-1907@sha256:6ceb8d3eae45adbe3a7ed5eaa78e13fbacbd37aebb6884b2cc639b36b677aeae [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/sklearn-serving-runtime@sha256:6ceb8d3eae45adbe3a7ed5eaa78e13fbacbd37aebb6884b2cc639b36b677aeae] to [quay.io/opendatahub/sklearn-serving-runtime:sha256-6ceb8d3eae45adbe3a7ed5eaa78e13fbacbd37aebb6884b2cc639b36b677aeae.sbom] with mediaType [text/spdx+json]. [upload-sbom] [upload-sbom] quay.io/opendatahub/sklearn-serving-runtime@sha256:3bd973130fe469055f090243af8acaa405127849c83a68d587adb946ea69a961 [upload-sbom] [2026-09-09T19:38:17,608913474+00:00] End upload-sbom