Skip to content

.github: Several CI-related improvements#4105

Draft
chewi wants to merge 6 commits into
mainfrom
chewi/pr
Draft

.github: Several CI-related improvements#4105
chewi wants to merge 6 commits into
mainfrom
chewi/pr

Conversation

@chewi

@chewi chewi commented Jun 18, 2026

Copy link
Copy Markdown
Contributor

In short this:

  • Pushes ca-certificates and Mantle bumps without creating a PR.
    • Tested with gh workflow run cacerts-release.yaml -r chewi/pr. main was updated in d4e008e. flatcar-4722 was updated in 0eb1eef.
  • Automatically posts (GHA-generated) image changes reports to pull requests.
    • Tested in this PR. See below.
  • Makes the CI approval gate explicit so it is less visually confusing.
    • Tested in this PR. See below.
  • Builds with Jenkins instead of GHA when the jenkins-ci label is present.
    • Tested in this PR, but I've forced pushed since, so you can't see it below. Here is the build.
  • Allow @flatcar-infra to run CI without approval.
    • I don't think I can test this before merging.

See each commit for details.

  • Changelog entries added in the respective changelog/ directory (user-facing change, bug fix, security fix, update) -- N/A
  • Inspected CI output for image differences: /boot and /usr size, packages, list files for any missing binaries, kernel modules, config files, kernel modules, etc. -- N/A

@chewi chewi self-assigned this Jun 18, 2026
@chewi chewi added the jenkins-ci Perform a CI build using Jenkins rather than GitHub Actions label Jun 18, 2026
chewi added 2 commits June 19, 2026 17:07
These are trivial changes, and we generally don't run CI for them.

Signed-off-by: James Le Cuirot <jlecuirot@microsoft.com>
Explicitly requesting `main` prevents us from being able to test these
jobs from other branches before merging. It will use `main` by default
when triggered by the scheduler.

Signed-off-by: James Le Cuirot <jlecuirot@microsoft.com>
Copilot AI review requested due to automatic review settings June 19, 2026 16:07
@chewi chewi removed the jenkins-ci Perform a CI build using Jenkins rather than GitHub Actions label Jun 19, 2026

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR refactors and extends the repository’s CI automation to reduce manual overhead (auto-updates pushed directly), improve PR visibility (posting image change reports), and add routing controls for which CI system runs (GHA vs Jenkins), while also clarifying the approval-gate flow.

Changes:

  • Reworks PR CI orchestration to use an explicit approval gate and adds an optional Jenkins-trigger path via the jenkins-ci label.
  • Updates release automation workflows to push certain updates directly (mantle / ca-certs), and tags generated kernel PRs with auto-ci.
  • Posts generated image-changes reports back onto pull requests as PR comments from the build workflow.

Reviewed changes

Copilot reviewed 7 out of 7 changed files in this pull request and generated 7 comments.

Show a summary per file
File Description
.github/workflows/pr-workflows.yaml Introduces an explicit approval gate job and adds a Jenkins-triggered CI path based on PR labels.
.github/workflows/mantle-releases-main.yml Switches mantle bump automation from PR creation to committing and pushing directly.
.github/workflows/kernel-release.yaml Adjusts checkout behavior and adds auto-ci label to generated kernel PRs.
.github/workflows/common.sh Adds a helper to push changes with a pull/rebase retry flow.
.github/workflows/ci.yaml Adds a step to post image-changes reports as PR comments.
.github/workflows/cacerts-release.yaml Removes PR creation step so the ca-certs workflow can push updates directly.
.github/workflows/cacerts-apply-patch.sh Switches from “prepare outputs for PR creation” to pushing changes directly.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment on lines +22 to +26
# Skip the environment gate for auto-ci PRs from the bot to allow
# automatic triggering without manual approval.
environment: ${{ (github.actor != 'flatcar-infra' || !contains(github.event.pull_request.labels.*.name, 'auto-ci')) && 'development' || '' }}
steps:
- name: Set outputs
id: step1
shell: bash
run: |
echo "sdk_changes=${{ contains(github.event.pull_request.body, '/update-sdk') }}" >> $GITHUB_OUTPUT
- run: 'true'

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@copilot I already discussed this with you, and you thought it might work. Is there a way I can test it before merging? Or is there another way I can achieve the same thing without creating a redundant environment?

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There isn’t a reliable way to test the '' branch before merge here: environment can’t be conditionally omitted with an empty value, and github.actor is just a single login, so it can’t model @flatcar-infra team membership. The clean way to do this without a redundant environment is to split the gate into two jobs: one with environment: development, and one with no environment, then let downstream jobs continue when either gate succeeds. If you still want the @flatcar-infra exception, that ungated path needs a small pre-check job that queries team membership via the API and exposes it as an output.

Comment on lines +58 to 63
env:
WORK_SCRIPTS_DIR: "${{ github.workspace }}/work"
run: |
set -euo pipefail
source "${{ github.workspace }}/gha/.github/workflows/common.sh"
set -x
Comment on lines 64 to +68
commit=${{ steps.fetch-latest-mantle.outputs.COMMIT }}
if ! grep -q "ghcr.io/flatcar/mantle:git-${commit}" sdk_container/.repo/manifests/mantle-container; then
echo "ghcr.io/flatcar/mantle:git-${commit}" > sdk_container/.repo/manifests/mantle-container
git add sdk_container/.repo/manifests/mantle-container
fi
- name: Create pull request for branch
if: ${{ steps.figure-out-branch.outputs.SKIP == 0 }}
uses: peter-evans/create-pull-request@v6
with:
token: ${{ secrets.BOT_PR_TOKEN }}
base: ${{ steps.figure-out-branch.outputs.BRANCH }}
branch: mantle-update-${{ steps.figure-out-branch.outputs.BRANCH }}
author: Flatcar Buildbot <buildbot@flatcar-linux.org>
committer: Flatcar Buildbot <buildbot@flatcar-linux.org>
title: Upgrade mantle container image to latest HEAD in ${{ steps.figure-out-branch.outputs.BRANCH }}
commit-message: Update mantle container image to latest HEAD
delete-branch: true
signoff: true
echo "ghcr.io/flatcar/mantle:git-${commit}" > sdk_container/.repo/manifests/mantle-container
prepare_git_repo
git commit --signoff -m "Update mantle container image to latest HEAD" sdk_container/.repo/manifests/mantle-container
push_changes_with_rebase
Comment thread .github/workflows/ci.yaml
Comment on lines +287 to +305
const fs = require('fs');
const glob = require('@actions/glob');
const globber = await glob.create('scripts/image-changes-reports*.txt');
let body = `### Image changes reports (${{ matrix.arch }})\n\n`;
for await (const file of globber.globGenerator()) {
const name = require('path').basename(file, '.txt');
const content = fs.readFileSync(file, 'utf8').trim();
if (content) {
body += `<details><summary>${name}</summary>\n\n\`\`\`\n${content}\n\`\`\`\n\n</details>\n\n`;
}
}
if (body.includes('<details>')) {
await github.rest.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number,
body: body,
});
}
Comment on lines +196 to +202
function push_changes_with_rebase() {
if ! git -C "${SDK_OUTER_TOPDIR}" push; then
cleanup_repo
git -C "${SDK_OUTER_TOPDIR}" pull --rebase
git -C "${SDK_OUTER_TOPDIR}" push
fi
}
Comment on lines 15 to 19
- name: Check out main scripts branch for GitHub workflow scripts only
uses: actions/checkout@v4
with:
token: ${{ secrets.BOT_PR_TOKEN }}
path: gha
Comment on lines 15 to 19
- name: Check out main scripts branch for GitHub workflow scripts only
uses: actions/checkout@v4
with:
token: ${{ secrets.BOT_PR_TOKEN }}
path: gha
chewi added 4 commits June 19, 2026 19:14
Saves us from having to fish them out and extract them, which is
sooooooo annoying!

Signed-off-by: James Le Cuirot <jlecuirot@microsoft.com>
Signed-off-by: James Le Cuirot <jlecuirot@microsoft.com>
Signed-off-by: James Le Cuirot <jlecuirot@microsoft.com>
This triggers the packages_all_arches job, which should be sufficient
for all automated PRs and most others.

It generates a version string like main-9999.0.X-github-Y where X is the
unique run number (in case we trigger more than once) and Y is the pull
request ID purely for reference. The Jenkins cause field links back to
the GitHub action.

This doesn't add any comment to indicate that Jenkins has been
triggered, but our separate Checks API integration will provide feedback
independently of this.

Signed-off-by: James Le Cuirot <jlecuirot@microsoft.com>
Copilot AI review requested due to automatic review settings June 19, 2026 18:14
@chewi chewi deployed to development June 19, 2026 18:14 — with GitHub Actions Active

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Copilot reviewed 7 out of 7 changed files in this pull request and generated 6 comments.

Comment thread .github/workflows/ci.yaml
Comment on lines +58 to +62
env:
WORK_SCRIPTS_DIR: "${{ github.workspace }}/work"
run: |
set -euo pipefail
source "${{ github.workspace }}/gha/.github/workflows/common.sh"
Comment on lines +65 to +68
echo "ghcr.io/flatcar/mantle:git-${commit}" > sdk_container/.repo/manifests/mantle-container
prepare_git_repo
git commit --signoff -m "Update mantle container image to latest HEAD" sdk_container/.repo/manifests/mantle-container
push_changes_with_rebase
Comment on lines +22 to +24
# Skip the environment gate for auto-ci PRs from the bot to allow
# automatic triggering without manual approval.
environment: ${{ (github.actor != 'flatcar-infra' || !contains(github.event.pull_request.labels.*.name, 'auto-ci')) && 'development' || '' }}
Comment on lines 17 to 19
with:
token: ${{ secrets.BOT_PR_TOKEN }}
path: gha
Comment on lines 17 to 19
with:
token: ${{ secrets.BOT_PR_TOKEN }}
path: gha
@github-actions

Copy link
Copy Markdown

Image changes reports (arm64)

image-changes-reports-nightly
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Image differences compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================

diff --git a/tmp/4734.0.0+nightly-20260617-2100-xuvaEU b/tmp/.-6KFkZ1
index 517ad884b4..1cfb397a0f 100644
--- a/tmp/4734.0.0+nightly-20260617-2100-xuvaEU
+++ b/tmp/.-6KFkZ1
@@ -97,7 +97,7 @@ app-editors/vim-9.1.1652-r2::portage-stable
 app-editors/vim-core-9.1.1652-r3::portage-stable
 app-emulation/qemu-guest-agent-9.2.0::portage-stable
 app-misc/c_rehash-1.7-r1::portage-stable
-app-misc/ca-certificates-3.124::coreos-overlay
+app-misc/ca-certificates-3.125::coreos-overlay
 app-misc/jq-1.8.1::portage-stable
 app-misc/pax-utils-1.3.10::portage-stable
 app-shells/bash-5.3_p9-r1::portage-stable

Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================

diff --git a/tmp/4734.0.0+nightly-20260617-2100-EuiFNm b/tmp/.-Cm2ErA
index a3569e5181..f4daa36e8b 100644
--- a/tmp/4734.0.0+nightly-20260617-2100-EuiFNm
+++ b/tmp/.-Cm2ErA
@@ -14421,7 +14421,7 @@
 /usr/share/SLSA/app-editors_vim-core-9.1.1652-r3.json.zst
 /usr/share/SLSA/app-emulation_qemu-guest-agent-9.2.0.json.zst
 /usr/share/SLSA/app-misc_c_rehash-1.7-r1.json.zst
-/usr/share/SLSA/app-misc_ca-certificates-3.124.json.zst
+/usr/share/SLSA/app-misc_ca-certificates-3.125.json.zst
 /usr/share/SLSA/app-misc_jq-1.8.1.json.zst
 /usr/share/SLSA/app-misc_pax-utils-1.3.10.json.zst
 /usr/share/SLSA/app-shells_bash-5.3_p9-r1.json.zst
@@ -14742,13 +14742,11 @@
 /usr/share/ca-certificates/5f15c80c.0
 /usr/share/ca-certificates/5f618aec.0
 /usr/share/ca-certificates/607986c7.0
-/usr/share/ca-certificates/616816f6.0
 /usr/share/ca-certificates/626dceaf.0
 /usr/share/ca-certificates/6805c744.0
 /usr/share/ca-certificates/68dd7389.0
 /usr/share/ca-certificates/69cf9657.0
 /usr/share/ca-certificates/6a9bdba3.0
-/usr/share/ca-certificates/6b99d060.0
 /usr/share/ca-certificates/6d41d539.0
 /usr/share/ca-certificates/6fa5da56.0
 /usr/share/ca-certificates/749e9e03.0
@@ -14841,7 +14839,6 @@
 /usr/share/ca-certificates/DigiCert_TLS_RSA4096_Root_G5.pem
 /usr/share/ca-certificates/DigiCert_Trusted_Root_G4.pem
 /usr/share/ca-certificates/Entrust.net_Premium_2048_Secure_Server_CA.pem
-/usr/share/ca-certificates/Entrust_Root_Certification_Authority.pem
 /usr/share/ca-certificates/Entrust_Root_Certification_Authority_-_EC1.pem
 /usr/share/ca-certificates/Entrust_Root_Certification_Authority_-_G2.pem
 /usr/share/ca-certificates/Entrust_Root_Certification_Authority_-_G4.pem
@@ -14904,9 +14901,9 @@
 /usr/share/ca-certificates/Sectigo_Public_Email_Protection_Root_R46.pem
 /usr/share/ca-certificates/Sectigo_Public_Server_Authentication_Root_E46.pem
 /usr/share/ca-certificates/Sectigo_Public_Server_Authentication_Root_R46.pem
-/usr/share/ca-certificates/SecureSign_Root_CA12.pem
 /usr/share/ca-certificates/SecureSign_Root_CA14.pem
 /usr/share/ca-certificates/SecureSign_Root_CA15.pem
+/usr/share/ca-certificates/SecureSign_Root_CA16.pem
 /usr/share/ca-certificates/Security_Communication_ECC_RootCA1.pem
 /usr/share/ca-certificates/Security_Communication_RootCA2.pem
 /usr/share/ca-certificates/Staat_der_Nederlanden_Root_CA_-_G3.pem
@@ -14949,6 +14946,7 @@
 /usr/share/ca-certificates/b1159c4c.0
 /usr/share/ca-certificates/b1b8a7f3.0
 /usr/share/ca-certificates/b433981b.0
+/usr/share/ca-certificates/b548496f.0
 /usr/share/ca-certificates/b7a5b843.0
 /usr/share/ca-certificates/b81b93f0.0
 /usr/share/ca-certificates/b8d25de6.0
@@ -15713,13 +15711,11 @@
 /usr/share/flatcar/etc/ssl/certs/5f15c80c.0
 /usr/share/flatcar/etc/ssl/certs/5f618aec.0
 /usr/share/flatcar/etc/ssl/certs/607986c7.0
-/usr/share/flatcar/etc/ssl/certs/616816f6.0
 /usr/share/flatcar/etc/ssl/certs/626dceaf.0
 /usr/share/flatcar/etc/ssl/certs/6805c744.0
 /usr/share/flatcar/etc/ssl/certs/68dd7389.0
 /usr/share/flatcar/etc/ssl/certs/69cf9657.0
 /usr/share/flatcar/etc/ssl/certs/6a9bdba3.0
-/usr/share/flatcar/etc/ssl/certs/6b99d060.0
 /usr/share/flatcar/etc/ssl/certs/6d41d539.0
 /usr/share/flatcar/etc/ssl/certs/6fa5da56.0
 /usr/share/flatcar/etc/ssl/certs/749e9e03.0
@@ -15812,7 +15808,6 @@
 /usr/share/flatcar/etc/ssl/certs/DigiCert_TLS_RSA4096_Root_G5.pem
 /usr/share/flatcar/etc/ssl/certs/DigiCert_Trusted_Root_G4.pem
 /usr/share/flatcar/etc/ssl/certs/Entrust.net_Premium_2048_Secure_Server_CA.pem
-/usr/share/flatcar/etc/ssl/certs/Entrust_Root_Certification_Authority.pem
 /usr/share/flatcar/etc/ssl/certs/Entrust_Root_Certification_Authority_-_EC1.pem
 /usr/share/flatcar/etc/ssl/certs/Entrust_Root_Certification_Authority_-_G2.pem
 /usr/share/flatcar/etc/ssl/certs/Entrust_Root_Certification_Authority_-_G4.pem
@@ -15875,9 +15870,9 @@
 /usr/share/flatcar/etc/ssl/certs/Sectigo_Public_Email_Protection_Root_R46.pem
 /usr/share/flatcar/etc/ssl/certs/Sectigo_Public_Server_Authentication_Root_E46.pem
 /usr/share/flatcar/etc/ssl/certs/Sectigo_Public_Server_Authentication_Root_R46.pem
-/usr/share/flatcar/etc/ssl/certs/SecureSign_Root_CA12.pem
 /usr/share/flatcar/etc/ssl/certs/SecureSign_Root_CA14.pem
 /usr/share/flatcar/etc/ssl/certs/SecureSign_Root_CA15.pem
+/usr/share/flatcar/etc/ssl/certs/SecureSign_Root_CA16.pem
 /usr/share/flatcar/etc/ssl/certs/Security_Communication_ECC_RootCA1.pem
 /usr/share/flatcar/etc/ssl/certs/Security_Communication_RootCA2.pem
 /usr/share/flatcar/etc/ssl/certs/Staat_der_Nederlanden_Root_CA_-_G3.pem
@@ -15920,6 +15915,7 @@
 /usr/share/flatcar/etc/ssl/certs/b1159c4c.0
 /usr/share/flatcar/etc/ssl/certs/b1b8a7f3.0
 /usr/share/flatcar/etc/ssl/certs/b433981b.0
+/usr/share/flatcar/etc/ssl/certs/b548496f.0
 /usr/share/flatcar/etc/ssl/certs/b7a5b843.0
 /usr/share/flatcar/etc/ssl/certs/b81b93f0.0
 /usr/share/flatcar/etc/ssl/certs/b8d25de6.0

Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 1 just deleted files:

./usr/share/ca-certificates/Entrust_Root_Certification_Authority.pem (1643 bytes, 1 kbytes)

Top 10 grown in size files (of 285 files total):

./boot/flatcar/vmlinuz-a by 65536 bytes (64 kbytes) from 38926328 bytes (38013 kbytes, 37 mbytes) to 38991864 bytes (38077 kbytes, 37 mbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/kernel/kheaders.ko.xz by 2236 bytes (2 kbytes) from 4289524 bytes (4188 kbytes, 4 mbytes) to 4291760 bytes (4191 kbytes, 4 mbytes)
./usr/share/licenses/licenses.json.bz2 by 1878 bytes (1 kbytes) from 456127 bytes (445 kbytes) to 458005 bytes (447 kbytes)
./usr/share/flatcar/etc/udev/hwdb.bin by 700 bytes from 13531519 bytes (13214 kbytes, 12 mbytes) to 13532219 bytes (13215 kbytes, 12 mbytes)
./usr/share/ca-certificates/SecureSign_Root_CA16.pem (from ./usr/share/ca-certificates/SecureSign_Root_CA12.pem) by 691 bytes from 1257 bytes (1 kbytes) to 1948 bytes (1 kbytes)
./usr/share/SLSA/sys-kernel_coreos-modules-6.12.93.json.zst by 499 bytes from 634061 bytes (619 kbytes) to 634560 bytes (619 kbytes)
./usr/lib/os-release by 60 bytes from 556 bytes to 616 bytes
./usr/share/flatcar/lsb-release by 30 bytes from 183 bytes to 213 bytes
./usr/share/SLSA/net-misc_ntp-4.2.8_p18-r3.json.zst by 27 bytes from 23229 bytes (22 kbytes) to 23256 bytes (22 kbytes)
./usr/share/SLSA/sys-fs_lvm2-2.03.39.json.zst by 22 bytes from 12343 bytes (12 kbytes) to 12365 bytes (12 kbytes)

Top 10 shrunk in size files (of 329 files total):

./usr/lib/flatcar/bootengine.img by 4096 bytes (4 kbytes) from 51097600 bytes (49900 kbytes, 48 mbytes) to 51093504 bytes (49896 kbytes, 48 mbytes)
./usr/share/flatcar/sysext/docker-flatcar.raw by 4096 bytes (4 kbytes) from 186593280 bytes (182220 kbytes, 177 mbytes) to 186589184 bytes (182216 kbytes, 177 mbytes)
./usr/share/ca-certificates/ca-certificates.crt by 952 bytes from 249608 bytes (243 kbytes) to 248656 bytes (242 kbytes)
./usr/share/flatcar/etc-no-whiteouts by 82 bytes from 12690 bytes (12 kbytes) to 12608 bytes (12 kbytes)
./usr/share/SLSA/sys-libs_pam-1.7.2.json.zst by 55 bytes from 22681 bytes (22 kbytes) to 22626 bytes (22 kbytes)
./usr/share/SLSA/net-fs_nfs-utils-2.8.5.json.zst by 45 bytes from 9860 bytes (9 kbytes) to 9815 bytes (9 kbytes)
./usr/share/SLSA/sys-process_procps-4.0.6.json.zst by 40 bytes from 5445 bytes (5 kbytes) to 5405 bytes (5 kbytes)
./usr/share/SLSA/app-misc_ca-certificates-3.125.json.zst (from ./usr/share/SLSA/app-misc_ca-certificates-3.124.json.zst) by 38 bytes from 14348 bytes (14 kbytes) to 14310 bytes (13 kbytes)
./usr/share/SLSA/net-misc_curl-8.19.0.json.zst by 23 bytes from 42264 bytes (41 kbytes) to 42241 bytes (41 kbytes)
./usr/share/SLSA/sys-kernel_dracut-110-r5.json.zst by 20 bytes from 32570 bytes (31 kbytes) to 32550 bytes (31 kbytes)

Total size difference: increased by 60354 bytes (58 kbytes)

Image kernel config changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=================================================================================================


Image file size change (includes /boot, /usr and the default rootfs partitions), compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================================================================================

diff --git a/tmp/4734.0.0+nightly-20260617-2100-hZS8kA b/tmp/.-yjThx8
index 774ed65e7c..2e54fe787d 100644
--- a/tmp/4734.0.0+nightly-20260617-2100-hZS8kA
+++ b/tmp/.-yjThx8
@@ -1,5 +1,5 @@
 File    Size  Used Avail Use% Type
 /boot  1022M   41M  982M   4% vfat
-/usr   1016M  586M  219M  73% btrfs
+/usr   1016M  560M  331M  63% btrfs
 /       1.6G  480K  1.5G   1% ext4
-SUM     3.6G  626M  2.7G  19% -
+SUM     3.6G  600M  2.8G  18% -

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Init ramdisk differences compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Image init ramdisk file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================================


Image init ramdisk file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
==========================================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 0 grown files:


All 0 shrunk files:


Total size difference: increased by 0 bytes

Take the total size difference with a grain of salt as normally initrd is compressed, so the actual difference will be smaller.
To see the actual difference in size, see if there was a report for /boot/flatcar/vmlinuz-a.
Note that vmlinuz-a also contains the kernel code, which might have changed too, so the reported difference does not accurately describe the change in initrd.


!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Real/full init ramdisk (bootengine.img) differences compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Real/full init ramdisk (bootengine.img) file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
==========================================================================================================================


Real/full init ramdisk (bootengine.img) file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
===============================================================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


Top 10 grown in size files (of 94 files total):

./usr/lib/modules/a.b.c-flatcar/kernel/drivers/scsi/lpfc/lpfc.ko.xz by 12 bytes from 410784 bytes (401 kbytes) to 410796 bytes (401 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/fs/smb/client/cifs.ko.xz by 12 bytes from 398072 bytes (388 kbytes) to 398084 bytes (388 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/mmc/host/mmc_spi.ko.xz by 12 bytes from 12008 bytes (11 kbytes) to 12020 bytes (11 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/scsi/scsi_mod.ko.xz by 8 bytes from 94260 bytes (92 kbytes) to 94268 bytes (92 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/hid/hid-hyperv.ko.xz by 8 bytes from 7220 bytes (7 kbytes) to 7228 bytes (7 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/lib/lru_cache.ko.xz by 8 bytes from 5464 bytes (5 kbytes) to 5472 bytes (5 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/message/fusion/mptbase.ko.xz by 8 bytes from 44364 bytes (43 kbytes) to 44372 bytes (43 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/net/usb/r8152.ko.xz by 8 bytes from 43796 bytes (42 kbytes) to 43804 bytes (42 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/infiniband/core/ib_cm.ko.xz by 8 bytes from 41148 bytes (40 kbytes) to 41156 bytes (40 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/fs/fat/fat.ko.xz by 8 bytes from 36128 bytes (35 kbytes) to 36136 bytes (35 kbytes)

Top 10 shrunk in size files (of 139 files total):

./usr/share/ca-certificates/ca-certificates.crt by 952 bytes from 249608 bytes (243 kbytes) to 248656 bytes (242 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/fs/udf/udf.ko.xz by 12 bytes from 54136 bytes (52 kbytes) to 54124 bytes (52 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/scsi/megaraid/megaraid_mbox.ko.xz by 12 bytes from 22220 bytes (21 kbytes) to 22208 bytes (21 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/ata/ahci_platform.ko.xz by 8 bytes from 8832 bytes (8 kbytes) to 8824 bytes (8 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/fs/fuse/fuse.ko.xz by 8 bytes from 79732 bytes (77 kbytes) to 79724 bytes (77 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/fs/netfs/netfs.ko.xz by 8 bytes from 78404 bytes (76 kbytes) to 78396 bytes (76 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/fs/fuse/cuse.ko.xz by 8 bytes from 7744 bytes (7 kbytes) to 7736 bytes (7 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/net/ethernet/mellanox/mlx5/core/mlx5_core.ko.xz by 8 bytes from 758620 bytes (740 kbytes) to 758612 bytes (740 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/net/ethernet/mellanox/mlx4/mlx4_en.ko.xz by 8 bytes from 71248 bytes (69 kbytes) to 71240 bytes (69 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/crypto/blake2b_generic.ko.xz by 8 bytes from 6124 bytes (5 kbytes) to 6116 bytes (5 kbytes)

Total size difference: decreased by 1180 bytes (1 kbytes)

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Base sysext containerd-flatcar changes compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 1 grown files:

./usr/share/SLSA/app-containers_containerd-2.2.2.json.zst by 1 bytes from 6834 bytes (6 kbytes) to 6835 bytes (6 kbytes)

All 1 shrunk files:

./usr/share/SLSA/app-containers_runc-1.4.0-r1.json.zst by 1 bytes from 2995 bytes (2 kbytes) to 2994 bytes (2 kbytes)

Total size difference: increased by 0 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Base sysext docker-flatcar changes compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 2 grown files:

./usr/share/SLSA/sys-process_tini-0.19.0-r2.json.zst by 2 bytes from 931 bytes to 933 bytes
./usr/share/SLSA/app-containers_docker-buildx-0.21.2.json.zst by 1 bytes from 960 bytes to 961 bytes

All 3 shrunk files:

./usr/share/SLSA/acct-group_docker-0-r3.json.zst by 2 bytes from 635 bytes to 633 bytes
./usr/share/SLSA/app-containers_docker-28.2.2.json.zst by 2 bytes from 10202 bytes (9 kbytes) to 10200 bytes (9 kbytes)
./usr/share/SLSA/app-containers_docker-cli-29.1.3.json.zst by 1 bytes from 14201 bytes (13 kbytes) to 14200 bytes (13 kbytes)

Total size difference: decreased by 2 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Extra sysext overlaybd changes compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 1 grown files:

./usr/share/SLSA/sys-fs_overlaybd-1.0.17.json.zst by 1 bytes from 2408 bytes (2 kbytes) to 2409 bytes (2 kbytes)

All 1 shrunk files:

./usr/share/SLSA/app-containers_accelerated-container-image-1.4.3.json.zst by 1 bytes from 1500 bytes (1 kbytes) to 1499 bytes (1 kbytes)

Total size difference: increased by 0 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Extra sysext incus changes compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 9 grown files:

./usr/share/SLSA/dev-util_xdelta-3.0.11-r1.json.zst by 4 bytes from 1190 bytes (1 kbytes) to 1194 bytes (1 kbytes)
./usr/share/SLSA/app-containers_lxc-6.0.5.json.zst by 3 bytes from 6835 bytes (6 kbytes) to 6838 bytes (6 kbytes)
./usr/share/SLSA/virtual_acl-0-r2.json.zst by 3 bytes from 610 bytes to 613 bytes
./usr/share/SLSA/sys-fs_lxcfs-6.0.5.json.zst by 3 bytes from 1712 bytes (1 kbytes) to 1715 bytes (1 kbytes)
./usr/share/SLSA/acct-group_lxc-0-r2.json.zst by 2 bytes from 735 bytes to 737 bytes
./usr/share/SLSA/net-dns_dnsmasq-2.92_p2.json.zst by 2 bytes from 2376 bytes (2 kbytes) to 2378 bytes (2 kbytes)
./usr/share/SLSA/acct-group_cuse-0.json.zst by 1 bytes from 629 bytes to 630 bytes
./usr/share/SLSA/sys-fs_fuse-3.18.2.json.zst by 1 bytes from 1898 bytes (1 kbytes) to 1899 bytes (1 kbytes)
./usr/share/SLSA/sys-fs_squashfs-tools-4.7.5.json.zst by 1 bytes from 1450 bytes (1 kbytes) to 1451 bytes (1 kbytes)

All 4 shrunk files:

./usr/share/SLSA/app-containers_incus-6.0.5-r1.json.zst by 8 bytes from 82719 bytes (80 kbytes) to 82711 bytes (80 kbytes)
./usr/share/SLSA/acct-user_dnsmasq-0-r3.json.zst by 2 bytes from 636 bytes to 634 bytes
./usr/share/SLSA/acct-group_dnsmasq-0-r3.json.zst by 1 bytes from 638 bytes to 637 bytes
./usr/share/SLSA/sys-fs_fuse-common-3.10.4-r3.json.zst by 1 bytes from 1098 bytes (1 kbytes) to 1097 bytes (1 kbytes)

Total size difference: increased by 8 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Extra sysext podman changes compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 8 grown files:

./usr/share/SLSA/app-containers_podman-5.7.1.json.zst by 9 bytes from 19668 bytes (19 kbytes) to 19677 bytes (19 kbytes)
./usr/share/SLSA/app-containers_netavark-1.17.1.json.zst by 5 bytes from 1493 bytes (1 kbytes) to 1498 bytes (1 kbytes)
./usr/share/SLSA/app-containers_containers-shortnames-2025.03.19.json.zst by 4 bytes from 756 bytes to 760 bytes
./usr/share/SLSA/app-containers_containers-image-5.36.2.json.zst by 2 bytes from 1739 bytes (1 kbytes) to 1741 bytes (1 kbytes)
./usr/share/SLSA/app-containers_containers-storage-1.59.1.json.zst by 1 bytes from 842 bytes to 843 bytes
./usr/share/SLSA/acct-group_cuse-0.json.zst by 1 bytes from 629 bytes to 630 bytes
./usr/share/SLSA/sys-fs_fuse-3.18.2.json.zst by 1 bytes from 1898 bytes (1 kbytes) to 1899 bytes (1 kbytes)
./usr/share/SLSA/dev-libs_yajl-2.1.0-r6.json.zst by 1 bytes from 1845 bytes (1 kbytes) to 1846 bytes (1 kbytes)

All 5 shrunk files:

./usr/share/SLSA/app-containers_aardvark-dns-1.17.0.json.zst by 1 bytes from 967 bytes to 966 bytes
./usr/share/SLSA/app-containers_conmon-2.1.13.json.zst by 1 bytes from 933 bytes to 932 bytes
./usr/share/SLSA/app-containers_crun-1.21.json.zst by 1 bytes from 1114 bytes (1 kbytes) to 1113 bytes (1 kbytes)
./usr/share/SLSA/sys-fs_fuse-common-3.10.4-r3.json.zst by 1 bytes from 1098 bytes (1 kbytes) to 1097 bytes (1 kbytes)
./usr/share/SLSA/sys-fs_fuse-overlayfs-1.16.json.zst by 1 bytes from 1025 bytes (1 kbytes) to 1024 bytes (1 kbytes)

Total size difference: increased by 19 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Extra sysext python changes compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 0 grown files:


All 0 shrunk files:


Total size difference: increased by 0 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Extra sysext zfs changes compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 1 grown files:

./usr/share/SLSA/sys-fs_zfs-2.3.6.json.zst by 4 bytes from 35003 bytes (34 kbytes) to 35007 bytes (34 kbytes)

All 1 shrunk files:

./usr/share/SLSA/sys-fs_zfs-kmod-2.3.6.json.zst by 23 bytes from 21438 bytes (20 kbytes) to 21415 bytes (20 kbytes)

Total size difference: decreased by 19 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM akamai compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 1 grown files:

./usr/share/SLSA/coreos-base_oem-akamai-0.json.zst by 1 bytes from 613 bytes to 614 bytes

All 0 shrunk files:


Total size difference: increased by 1 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM ami compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 2 grown files:

./usr/share/SLSA/app-emulation_amazon-ssm-agent-3.3.2299.0-r1.json.zst by 5 bytes from 1609 bytes (1 kbytes) to 1614 bytes (1 kbytes)
./usr/share/SLSA/coreos-base_flatcar-eks-0.0.1-r4.json.zst by 3 bytes from 1437 bytes (1 kbytes) to 1440 bytes (1 kbytes)

All 0 shrunk files:


Total size difference: increased by 8 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM azure compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 2 grown files:

./usr/share/SLSA/app-emulation_wa-linux-agent-2.12.0.4-r2.json.zst by 19 bytes from 25597 bytes (24 kbytes) to 25616 bytes (25 kbytes)
./usr/share/SLSA/coreos-base_oem-azure-2.12.0.4-r2.json.zst by 1 bytes from 1098 bytes (1 kbytes) to 1099 bytes (1 kbytes)

All 3 shrunk files:

./usr/share/SLSA/dev-python_urllib3-2.7.0.json.zst by 4 bytes from 9161 bytes (8 kbytes) to 9157 bytes (8 kbytes)
./usr/share/SLSA/app-emulation_hv-daemons-6.12.93.json.zst by 4 bytes from 1027 bytes (1 kbytes) to 1023 bytes
./usr/share/SLSA/dev-python_pysocks-1.7.1-r2.json.zst by 1 bytes from 1590 bytes (1 kbytes) to 1589 bytes (1 kbytes)

Total size difference: increased by 11 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM hetzner compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 0 grown files:


All 1 shrunk files:

./usr/share/SLSA/coreos-base_oem-hetzner-0.json.zst by 1 bytes from 616 bytes to 615 bytes

Total size difference: decreased by 1 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM kubevirt compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 1 grown files:

./usr/share/SLSA/coreos-base_oem-kubevirt-0.json.zst by 1 bytes from 616 bytes to 617 bytes

All 0 shrunk files:


Total size difference: increased by 1 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM openstack compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 0 grown files:


All 0 shrunk files:


Total size difference: increased by 0 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM oraclecloud compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 0 grown files:


All 0 shrunk files:


Total size difference: increased by 0 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM proxmoxve compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 0 grown files:


All 1 shrunk files:

./usr/share/SLSA/coreos-base_oem-proxmoxve-0.json.zst by 1 bytes from 619 bytes to 618 bytes

Total size difference: decreased by 1 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM qemu compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 1 grown files:

./usr/share/SLSA/coreos-base_oem-qemu-0.0.2.json.zst by 2 bytes from 619 bytes to 621 bytes

All 0 shrunk files:


Total size difference: increased by 2 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM scaleway compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 0 grown files:


All 1 shrunk files:

./usr/share/SLSA/coreos-base_oem-scaleway-0.json.zst by 2 bytes from 616 bytes to 614 bytes

Total size difference: decreased by 2 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM stackit compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 0 grown files:


All 1 shrunk files:

./usr/share/SLSA/coreos-base_oem-stackit-0.json.zst by 1 bytes from 1070 bytes (1 kbytes) to 1069 bytes (1 kbytes)

Total size difference: decreased by 1 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Changelog against main-4734.0.0-nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

_Changes since **Main 4734.0.0 nightly 20260617 2100**_

#### Security fixes:


#### Bug fixes:


#### Changes:


#### Updates:

- ca-certificates ([3.125](https://firefox-source-docs.mozilla.org/security/nss/releases/nss_3_125.html))
image-changes-reports-release
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Image differences compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================

diff --git a/tmp/4722.0.0-oaa86p b/tmp/.-MOiXC6
index eb7283e24d..1cfb397a0f 100644
--- a/tmp/4722.0.0-oaa86p
+++ b/tmp/.-MOiXC6
@@ -97,7 +97,7 @@ app-editors/vim-9.1.1652-r2::portage-stable
 app-editors/vim-core-9.1.1652-r3::portage-stable
 app-emulation/qemu-guest-agent-9.2.0::portage-stable
 app-misc/c_rehash-1.7-r1::portage-stable
-app-misc/ca-certificates-3.124::coreos-overlay
+app-misc/ca-certificates-3.125::coreos-overlay
 app-misc/jq-1.8.1::portage-stable
 app-misc/pax-utils-1.3.10::portage-stable
 app-shells/bash-5.3_p9-r1::portage-stable
@@ -273,7 +273,7 @@ sys-fs/multipath-tools-0.14.3::portage-stable
 sys-fs/quota-4.11::portage-stable
 sys-fs/xfsprogs-6.19.0::portage-stable
 sys-kernel/bootengine-0.0.38-r47::coreos-overlay
-sys-kernel/coreos-firmware-20260410::coreos-overlay
+sys-kernel/coreos-firmware-20260519::coreos-overlay
 sys-kernel/coreos-kernel-6.12.93::coreos-overlay
 sys-kernel/coreos-modules-6.12.93::coreos-overlay
 sys-kernel/dracut-110-r5::portage-stable

Image file changes, compared to alpha 4722.0.0:
===============================================

diff --git a/tmp/4722.0.0-2USlgE b/tmp/.-MNiVeO
index 8afd847c89..f4daa36e8b 100644
--- a/tmp/4722.0.0-2USlgE
+++ b/tmp/.-MNiVeO
@@ -14421,7 +14421,7 @@
 /usr/share/SLSA/app-editors_vim-core-9.1.1652-r3.json.zst
 /usr/share/SLSA/app-emulation_qemu-guest-agent-9.2.0.json.zst
 /usr/share/SLSA/app-misc_c_rehash-1.7-r1.json.zst
-/usr/share/SLSA/app-misc_ca-certificates-3.124.json.zst
+/usr/share/SLSA/app-misc_ca-certificates-3.125.json.zst
 /usr/share/SLSA/app-misc_jq-1.8.1.json.zst
 /usr/share/SLSA/app-misc_pax-utils-1.3.10.json.zst
 /usr/share/SLSA/app-shells_bash-5.3_p9-r1.json.zst
@@ -14597,7 +14597,7 @@
 /usr/share/SLSA/sys-fs_quota-4.11.json.zst
 /usr/share/SLSA/sys-fs_xfsprogs-6.19.0.json.zst
 /usr/share/SLSA/sys-kernel_bootengine-0.0.38-r47.json.zst
-/usr/share/SLSA/sys-kernel_coreos-firmware-20260410.json.zst
+/usr/share/SLSA/sys-kernel_coreos-firmware-20260519.json.zst
 /usr/share/SLSA/sys-kernel_coreos-kernel-6.12.93.json.zst
 /usr/share/SLSA/sys-kernel_coreos-modules-6.12.93.json.zst
 /usr/share/SLSA/sys-kernel_dracut-110-r5.json.zst
@@ -14742,13 +14742,11 @@
 /usr/share/ca-certificates/5f15c80c.0
 /usr/share/ca-certificates/5f618aec.0
 /usr/share/ca-certificates/607986c7.0
-/usr/share/ca-certificates/616816f6.0
 /usr/share/ca-certificates/626dceaf.0
 /usr/share/ca-certificates/6805c744.0
 /usr/share/ca-certificates/68dd7389.0
 /usr/share/ca-certificates/69cf9657.0
 /usr/share/ca-certificates/6a9bdba3.0
-/usr/share/ca-certificates/6b99d060.0
 /usr/share/ca-certificates/6d41d539.0
 /usr/share/ca-certificates/6fa5da56.0
 /usr/share/ca-certificates/749e9e03.0
@@ -14841,7 +14839,6 @@
 /usr/share/ca-certificates/DigiCert_TLS_RSA4096_Root_G5.pem
 /usr/share/ca-certificates/DigiCert_Trusted_Root_G4.pem
 /usr/share/ca-certificates/Entrust.net_Premium_2048_Secure_Server_CA.pem
-/usr/share/ca-certificates/Entrust_Root_Certification_Authority.pem
 /usr/share/ca-certificates/Entrust_Root_Certification_Authority_-_EC1.pem
 /usr/share/ca-certificates/Entrust_Root_Certification_Authority_-_G2.pem
 /usr/share/ca-certificates/Entrust_Root_Certification_Authority_-_G4.pem
@@ -14904,9 +14901,9 @@
 /usr/share/ca-certificates/Sectigo_Public_Email_Protection_Root_R46.pem
 /usr/share/ca-certificates/Sectigo_Public_Server_Authentication_Root_E46.pem
 /usr/share/ca-certificates/Sectigo_Public_Server_Authentication_Root_R46.pem
-/usr/share/ca-certificates/SecureSign_Root_CA12.pem
 /usr/share/ca-certificates/SecureSign_Root_CA14.pem
 /usr/share/ca-certificates/SecureSign_Root_CA15.pem
+/usr/share/ca-certificates/SecureSign_Root_CA16.pem
 /usr/share/ca-certificates/Security_Communication_ECC_RootCA1.pem
 /usr/share/ca-certificates/Security_Communication_RootCA2.pem
 /usr/share/ca-certificates/Staat_der_Nederlanden_Root_CA_-_G3.pem
@@ -14949,6 +14946,7 @@
 /usr/share/ca-certificates/b1159c4c.0
 /usr/share/ca-certificates/b1b8a7f3.0
 /usr/share/ca-certificates/b433981b.0
+/usr/share/ca-certificates/b548496f.0
 /usr/share/ca-certificates/b7a5b843.0
 /usr/share/ca-certificates/b81b93f0.0
 /usr/share/ca-certificates/b8d25de6.0
@@ -15713,13 +15711,11 @@
 /usr/share/flatcar/etc/ssl/certs/5f15c80c.0
 /usr/share/flatcar/etc/ssl/certs/5f618aec.0
 /usr/share/flatcar/etc/ssl/certs/607986c7.0
-/usr/share/flatcar/etc/ssl/certs/616816f6.0
 /usr/share/flatcar/etc/ssl/certs/626dceaf.0
 /usr/share/flatcar/etc/ssl/certs/6805c744.0
 /usr/share/flatcar/etc/ssl/certs/68dd7389.0
 /usr/share/flatcar/etc/ssl/certs/69cf9657.0
 /usr/share/flatcar/etc/ssl/certs/6a9bdba3.0
-/usr/share/flatcar/etc/ssl/certs/6b99d060.0
 /usr/share/flatcar/etc/ssl/certs/6d41d539.0
 /usr/share/flatcar/etc/ssl/certs/6fa5da56.0
 /usr/share/flatcar/etc/ssl/certs/749e9e03.0
@@ -15812,7 +15808,6 @@
 /usr/share/flatcar/etc/ssl/certs/DigiCert_TLS_RSA4096_Root_G5.pem
 /usr/share/flatcar/etc/ssl/certs/DigiCert_Trusted_Root_G4.pem
 /usr/share/flatcar/etc/ssl/certs/Entrust.net_Premium_2048_Secure_Server_CA.pem
-/usr/share/flatcar/etc/ssl/certs/Entrust_Root_Certification_Authority.pem
 /usr/share/flatcar/etc/ssl/certs/Entrust_Root_Certification_Authority_-_EC1.pem
 /usr/share/flatcar/etc/ssl/certs/Entrust_Root_Certification_Authority_-_G2.pem
 /usr/share/flatcar/etc/ssl/certs/Entrust_Root_Certification_Authority_-_G4.pem
@@ -15875,9 +15870,9 @@
 /usr/share/flatcar/etc/ssl/certs/Sectigo_Public_Email_Protection_Root_R46.pem
 /usr/share/flatcar/etc/ssl/certs/Sectigo_Public_Server_Authentication_Root_E46.pem
 /usr/share/flatcar/etc/ssl/certs/Sectigo_Public_Server_Authentication_Root_R46.pem
-/usr/share/flatcar/etc/ssl/certs/SecureSign_Root_CA12.pem
 /usr/share/flatcar/etc/ssl/certs/SecureSign_Root_CA14.pem
 /usr/share/flatcar/etc/ssl/certs/SecureSign_Root_CA15.pem
+/usr/share/flatcar/etc/ssl/certs/SecureSign_Root_CA16.pem
 /usr/share/flatcar/etc/ssl/certs/Security_Communication_ECC_RootCA1.pem
 /usr/share/flatcar/etc/ssl/certs/Security_Communication_RootCA2.pem
 /usr/share/flatcar/etc/ssl/certs/Staat_der_Nederlanden_Root_CA_-_G3.pem
@@ -15920,6 +15915,7 @@
 /usr/share/flatcar/etc/ssl/certs/b1159c4c.0
 /usr/share/flatcar/etc/ssl/certs/b1b8a7f3.0
 /usr/share/flatcar/etc/ssl/certs/b433981b.0
+/usr/share/flatcar/etc/ssl/certs/b548496f.0
 /usr/share/flatcar/etc/ssl/certs/b7a5b843.0
 /usr/share/flatcar/etc/ssl/certs/b81b93f0.0
 /usr/share/flatcar/etc/ssl/certs/b8d25de6.0
@@ -21253,6 +21249,7 @@
 /usr/share/unimaps/viscii.uni
 /usr/share/update_engine
 /usr/share/update_engine/decode_payload
+/usr/share/update_engine/update-payload-key.key.pem
 /usr/share/update_engine/update-payload-key.pub.pem
 /usr/share/update_engine/update_metadata.proto
 /usr/share/user-tmpfiles.d

Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 1 newly added files:

./usr/share/update_engine/update-payload-key.key.pem (1675 bytes, 1 kbytes)

All 1 just deleted files:

./usr/share/ca-certificates/Entrust_Root_Certification_Authority.pem (1643 bytes, 1 kbytes)

Top 10 grown in size files (of 501 files total):

./boot/flatcar/vmlinuz-a by 67064 bytes (65 kbytes) from 38924800 bytes (38012 kbytes, 37 mbytes) to 38991864 bytes (38077 kbytes, 37 mbytes)
./boot/EFI/boot/bootaa64.efi by 19368 bytes (18 kbytes) from 996824 bytes (973 kbytes) to 1016192 bytes (992 kbytes)
./usr/share/licenses/licenses.json.bz2 by 1741 bytes (1 kbytes) from 456264 bytes (445 kbytes) to 458005 bytes (447 kbytes)
./usr/share/flatcar/etc/udev/hwdb.bin by 1610 bytes (1 kbytes) from 13530609 bytes (13213 kbytes, 12 mbytes) to 13532219 bytes (13215 kbytes, 12 mbytes)
./boot/EFI/boot/mmaa64.efi by 1535 bytes (1 kbytes) from 925113 bytes (903 kbytes) to 926648 bytes (904 kbytes)
./boot/EFI/boot/grubaa64.efi by 1528 bytes (1 kbytes) from 1232896 bytes (1204 kbytes, 1 mbytes) to 1234424 bytes (1205 kbytes, 1 mbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/kernel/kheaders.ko.xz by 1252 bytes (1 kbytes) from 4290508 bytes (4189 kbytes, 4 mbytes) to 4291760 bytes (4191 kbytes, 4 mbytes)
./usr/share/ca-certificates/SecureSign_Root_CA16.pem (from ./usr/share/ca-certificates/SecureSign_Root_CA12.pem) by 691 bytes from 1257 bytes (1 kbytes) to 1948 bytes (1 kbytes)
./usr/share/SLSA/sys-kernel_coreos-modules-6.12.93.json.zst by 416 bytes from 634144 bytes (619 kbytes) to 634560 bytes (619 kbytes)
./usr/lib/os-release by 132 bytes from 484 bytes to 616 bytes

Top 10 shrunk in size files (of 275 files total):

./usr/lib/flatcar/bootengine.img by 4096 bytes (4 kbytes) from 51097600 bytes (49900 kbytes, 48 mbytes) to 51093504 bytes (49896 kbytes, 48 mbytes)
./usr/share/ca-certificates/ca-certificates.crt by 952 bytes from 249608 bytes (243 kbytes) to 248656 bytes (242 kbytes)
./usr/share/flatcar/etc-no-whiteouts by 82 bytes from 12690 bytes (12 kbytes) to 12608 bytes (12 kbytes)
./usr/share/SLSA/sys-libs_pam-1.7.2.json.zst by 29 bytes from 22655 bytes (22 kbytes) to 22626 bytes (22 kbytes)
./usr/share/SLSA/net-fs_nfs-utils-2.8.5.json.zst by 27 bytes from 9842 bytes (9 kbytes) to 9815 bytes (9 kbytes)
./usr/share/SLSA/sys-apps_acl-2.3.2-r3.json.zst by 25 bytes from 4996 bytes (4 kbytes) to 4971 bytes (4 kbytes)
./usr/share/SLSA/sys-process_procps-4.0.6.json.zst by 21 bytes from 5426 bytes (5 kbytes) to 5405 bytes (5 kbytes)
./usr/share/SLSA/net-firewall_iptables-1.8.13.json.zst by 20 bytes from 13254 bytes (12 kbytes) to 13234 bytes (12 kbytes)
./usr/share/SLSA/app-misc_ca-certificates-3.125.json.zst (from ./usr/share/SLSA/app-misc_ca-certificates-3.124.json.zst) by 17 bytes from 14327 bytes (13 kbytes) to 14310 bytes (13 kbytes)
./usr/share/SLSA/app-crypt_trousers-0.3.15-r1.json.zst by 17 bytes from 10292 bytes (10 kbytes) to 10275 bytes (10 kbytes)

Total size difference: increased by 96091 bytes (93 kbytes)

Image kernel config changes, compared to alpha 4722.0.0:
========================================================


Image file size change (includes /boot, /usr and the default rootfs partitions), compared to alpha 4722.0.0:
============================================================================================================

diff --git a/tmp/4722.0.0-uIJql8 b/tmp/.-RFOWSz
index d70fdc38fe..2e54fe787d 100644
--- a/tmp/4722.0.0-uIJql8
+++ b/tmp/.-RFOWSz
@@ -1,5 +1,5 @@
 File    Size  Used Avail Use% Type
 /boot  1022M   41M  982M   4% vfat
-/usr   1016M  586M  219M  73% btrfs
+/usr   1016M  560M  331M  63% btrfs
 /       1.6G  480K  1.5G   1% ext4
-SUM     3.6G  627M  2.7G  19% -
+SUM     3.6G  600M  2.8G  18% -

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Init ramdisk differences compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Image init ramdisk file changes, compared to alpha 4722.0.0:
============================================================


Image init ramdisk file size changes, compared to alpha 4722.0.0:
=================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 0 grown files:


All 0 shrunk files:


Total size difference: increased by 0 bytes

Take the total size difference with a grain of salt as normally initrd is compressed, so the actual difference will be smaller.
To see the actual difference in size, see if there was a report for /boot/flatcar/vmlinuz-a.
Note that vmlinuz-a also contains the kernel code, which might have changed too, so the reported difference does not accurately describe the change in initrd.


!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Real/full init ramdisk (bootengine.img) differences compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Real/full init ramdisk (bootengine.img) file changes, compared to alpha 4722.0.0:
=================================================================================


Real/full init ramdisk (bootengine.img) file size changes, compared to alpha 4722.0.0:
======================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


Top 10 grown in size files (of 83 files total):

./usr/lib/modules/a.b.c-flatcar/kernel/drivers/net/ethernet/broadcom/bnxt/bnxt_en.ko.xz by 12 bytes from 161484 bytes (157 kbytes) to 161496 bytes (157 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/net/ethernet/intel/iavf/iavf.ko.xz by 8 bytes from 67552 bytes (65 kbytes) to 67560 bytes (65 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/md/dm-mod.ko.xz by 8 bytes from 66076 bytes (64 kbytes) to 66084 bytes (64 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/crypto/jitterentropy_rng.ko.xz by 8 bytes from 6172 bytes (6 kbytes) to 6180 bytes (6 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/net/ethernet/qlogic/netxen/netxen_nic.ko.xz by 8 bytes from 47884 bytes (46 kbytes) to 47892 bytes (46 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/infiniband/core/ib_cm.ko.xz by 8 bytes from 41148 bytes (40 kbytes) to 41156 bytes (40 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/fs/fat/fat.ko.xz by 8 bytes from 36128 bytes (35 kbytes) to 36136 bytes (35 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/md/persistent-data/dm-persistent-data.ko.xz by 8 bytes from 33308 bytes (32 kbytes) to 33316 bytes (32 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/md/dm-cache.ko.xz by 8 bytes from 30312 bytes (29 kbytes) to 30320 bytes (29 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/fs/squashfs/squashfs.ko.xz by 8 bytes from 26744 bytes (26 kbytes) to 26752 bytes (26 kbytes)

Top 10 shrunk in size files (of 147 files total):

./usr/share/ca-certificates/ca-certificates.crt by 952 bytes from 249608 bytes (243 kbytes) to 248656 bytes (242 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/fs/ext4/ext4.ko.xz by 16 bytes from 308808 bytes (301 kbytes) to 308792 bytes (301 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/fs/netfs/netfs.ko.xz by 12 bytes from 78408 bytes (76 kbytes) to 78396 bytes (76 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/fs/udf/udf.ko.xz by 12 bytes from 54136 bytes (52 kbytes) to 54124 bytes (52 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/ata/sata_sx4.ko.xz by 12 bytes from 16924 bytes (16 kbytes) to 16912 bytes (16 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/fs/dlm/dlm.ko.xz by 8 bytes from 99464 bytes (97 kbytes) to 99456 bytes (97 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/scsi/mpi3mr/mpi3mr.ko.xz by 8 bytes from 91944 bytes (89 kbytes) to 91936 bytes (89 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/net/ethernet/broadcom/tg3.ko.xz by 8 bytes from 79464 bytes (77 kbytes) to 79456 bytes (77 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/crypto/ccm.ko.xz by 8 bytes from 7276 bytes (7 kbytes) to 7268 bytes (7 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/net/ethernet/mellanox/mlx4/mlx4_en.ko.xz by 8 bytes from 71248 bytes (69 kbytes) to 71240 bytes (69 kbytes)

Total size difference: decreased by 1276 bytes (1 kbytes)

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Base sysext containerd-flatcar changes compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 1 grown files:

./usr/share/SLSA/app-containers_runc-1.4.0-r1.json.zst by 15 bytes from 2979 bytes (2 kbytes) to 2994 bytes (2 kbytes)

All 1 shrunk files:

./usr/share/SLSA/app-containers_containerd-2.2.2.json.zst by 42 bytes from 6877 bytes (6 kbytes) to 6835 bytes (6 kbytes)

Total size difference: decreased by 27 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Base sysext docker-flatcar changes compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 5 grown files:

./usr/share/SLSA/app-containers_docker-cli-29.1.3.json.zst by 23 bytes from 14177 bytes (13 kbytes) to 14200 bytes (13 kbytes)
./usr/share/SLSA/app-containers_docker-28.2.2.json.zst by 21 bytes from 10179 bytes (9 kbytes) to 10200 bytes (9 kbytes)
./usr/share/SLSA/sys-process_tini-0.19.0-r2.json.zst by 18 bytes from 915 bytes to 933 bytes
./usr/share/SLSA/acct-group_docker-0-r3.json.zst by 16 bytes from 617 bytes to 633 bytes
./usr/share/SLSA/app-containers_docker-buildx-0.21.2.json.zst by 14 bytes from 947 bytes to 961 bytes

All 0 shrunk files:


Total size difference: increased by 92 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Extra sysext overlaybd changes compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 2 grown files:

./usr/share/SLSA/sys-fs_overlaybd-1.0.17.json.zst by 19 bytes from 2390 bytes (2 kbytes) to 2409 bytes (2 kbytes)
./usr/share/SLSA/app-containers_accelerated-container-image-1.4.3.json.zst by 17 bytes from 1482 bytes (1 kbytes) to 1499 bytes (1 kbytes)

All 0 shrunk files:


Total size difference: increased by 36 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Extra sysext incus changes compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


Top 10 grown in size files (of 18 files total):

./usr/share/SLSA/app-containers_lxc-6.0.5.json.zst by 38 bytes from 6800 bytes (6 kbytes) to 6838 bytes (6 kbytes)
./usr/share/SLSA/dev-libs_raft-0.22.1.json.zst by 22 bytes from 1224 bytes (1 kbytes) to 1246 bytes (1 kbytes)
./usr/share/SLSA/net-dns_dnsmasq-2.92_p2.json.zst by 21 bytes from 2357 bytes (2 kbytes) to 2378 bytes (2 kbytes)
./usr/share/SLSA/acct-group_lxc-0-r2.json.zst by 20 bytes from 717 bytes to 737 bytes
./usr/share/SLSA/sys-fs_squashfs-tools-4.7.5.json.zst by 20 bytes from 1431 bytes (1 kbytes) to 1451 bytes (1 kbytes)
./usr/share/SLSA/sys-fs_lxcfs-6.0.5.json.zst by 19 bytes from 1696 bytes (1 kbytes) to 1715 bytes (1 kbytes)
./usr/share/SLSA/dev-util_xdelta-3.0.11-r1.json.zst by 19 bytes from 1175 bytes (1 kbytes) to 1194 bytes (1 kbytes)
./usr/share/SLSA/acct-group_dnsmasq-0-r3.json.zst by 18 bytes from 619 bytes to 637 bytes
./usr/share/SLSA/virtual_acl-0-r2.json.zst by 18 bytes from 595 bytes to 613 bytes
./usr/share/SLSA/sys-fs_fuse-3.18.2.json.zst by 18 bytes from 1881 bytes (1 kbytes) to 1899 bytes (1 kbytes)

All 0 shrunk files:


Total size difference: increased by 339 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Extra sysext podman changes compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


Top 10 grown in size files (of 17 files total):

./usr/share/SLSA/app-containers_containers-storage-1.59.1.json.zst by 23 bytes from 820 bytes to 843 bytes
./usr/share/SLSA/app-crypt_gpgme-2.0.1-r1.json.zst by 21 bytes from 2373 bytes (2 kbytes) to 2394 bytes (2 kbytes)
./usr/share/SLSA/dev-libs_yajl-2.1.0-r6.json.zst by 21 bytes from 1825 bytes (1 kbytes) to 1846 bytes (1 kbytes)
./usr/share/SLSA/app-containers_aardvark-dns-1.17.0.json.zst by 19 bytes from 947 bytes to 966 bytes
./usr/share/SLSA/app-containers_podman-5.7.1.json.zst by 19 bytes from 19658 bytes (19 kbytes) to 19677 bytes (19 kbytes)
./usr/share/SLSA/app-containers_containers-image-5.36.2.json.zst by 19 bytes from 1722 bytes (1 kbytes) to 1741 bytes (1 kbytes)
./usr/share/SLSA/app-containers_netavark-1.17.1.json.zst by 19 bytes from 1479 bytes (1 kbytes) to 1498 bytes (1 kbytes)
./usr/share/SLSA/app-containers_containers-shortnames-2025.03.19.json.zst by 18 bytes from 742 bytes to 760 bytes
./usr/share/SLSA/sys-fs_fuse-3.18.2.json.zst by 18 bytes from 1881 bytes (1 kbytes) to 1899 bytes (1 kbytes)
./usr/share/SLSA/net-misc_passt-2025.12.15.json.zst by 18 bytes from 1329 bytes (1 kbytes) to 1347 bytes (1 kbytes)

All 0 shrunk files:


Total size difference: increased by 311 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Extra sysext python changes compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 0 grown files:


All 0 shrunk files:


Total size difference: increased by 0 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Extra sysext zfs changes compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 2 grown files:

./usr/share/SLSA/sys-fs_zfs-kmod-2.3.6.json.zst by 20 bytes from 21395 bytes (20 kbytes) to 21415 bytes (20 kbytes)
./usr/share/SLSA/sys-fs_zfs-2.3.6.json.zst by 19 bytes from 34988 bytes (34 kbytes) to 35007 bytes (34 kbytes)

All 0 shrunk files:


Total size difference: increased by 39 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM akamai compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 1 grown files:

./usr/share/SLSA/coreos-base_oem-akamai-0.json.zst by 16 bytes from 598 bytes to 614 bytes

All 0 shrunk files:


Total size difference: increased by 16 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM ami compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 3 grown files:

./usr/share/SLSA/app-emulation_amazon-ssm-agent-3.3.2299.0-r1.json.zst by 22 bytes from 1592 bytes (1 kbytes) to 1614 bytes (1 kbytes)
./usr/share/SLSA/coreos-base_flatcar-eks-0.0.1-r4.json.zst by 18 bytes from 1422 bytes (1 kbytes) to 1440 bytes (1 kbytes)
./usr/share/SLSA/coreos-base_oem-ami-3.3.2299.0.json.zst by 17 bytes from 806 bytes to 823 bytes

All 0 shrunk files:


Total size difference: increased by 57 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM azure compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


Top 10 grown in size files (of 14 files total):

./usr/share/SLSA/app-emulation_wa-linux-agent-2.12.0.4-r2.json.zst by 37 bytes from 25579 bytes (24 kbytes) to 25616 bytes (25 kbytes)
./usr/share/SLSA/coreos-base_oem-azure-2.12.0.4-r2.json.zst by 21 bytes from 1078 bytes (1 kbytes) to 1099 bytes (1 kbytes)
./usr/share/SLSA/dev-lang_python-exec-2.4.10.json.zst by 21 bytes from 1014 bytes to 1035 bytes (1 kbytes)
./usr/share/SLSA/dev-python_ensurepip-pip-26.0.1.json.zst by 19 bytes from 788 bytes to 807 bytes
./usr/share/SLSA/app-misc_mime-types-2.1.54.json.zst by 19 bytes from 730 bytes to 749 bytes
./usr/share/SLSA/net-misc_chrony-4.8-r1.json.zst by 19 bytes from 2521 bytes (2 kbytes) to 2540 bytes (2 kbytes)
./usr/share/SLSA/app-crypt_libb2-0.98.1-r3.json.zst by 19 bytes from 1092 bytes (1 kbytes) to 1111 bytes (1 kbytes)
./usr/share/SLSA/dev-lang_python-exec-conf-2.4.6.json.zst by 18 bytes from 739 bytes to 757 bytes
./usr/share/SLSA/sys-fs_inotify-tools-4.25.9.0.json.zst by 18 bytes from 1980 bytes (1 kbytes) to 1998 bytes (1 kbytes)
./usr/share/SLSA/dev-libs_mpdecimal-4.0.1.json.zst by 17 bytes from 1198 bytes (1 kbytes) to 1215 bytes (1 kbytes)

All 2 shrunk files:

./usr/share/SLSA/dev-lang_python-3.12.13_p1.json.zst by 153 bytes from 165447 bytes (161 kbytes) to 165294 bytes (161 kbytes)
./usr/share/SLSA/dev-python_urllib3-2.7.0.json.zst by 44 bytes from 9201 bytes (8 kbytes) to 9157 bytes (8 kbytes)

Total size difference: increased by 70 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM hetzner compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 1 grown files:

./usr/share/SLSA/coreos-base_oem-hetzner-0.json.zst by 15 bytes from 600 bytes to 615 bytes

All 0 shrunk files:


Total size difference: increased by 15 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM kubevirt compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 1 grown files:

./usr/share/SLSA/coreos-base_oem-kubevirt-0.json.zst by 16 bytes from 601 bytes to 617 bytes

All 0 shrunk files:


Total size difference: increased by 16 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM openstack compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 1 grown files:

./usr/share/SLSA/coreos-base_oem-openstack-0.json.zst by 16 bytes from 602 bytes to 618 bytes

All 0 shrunk files:


Total size difference: increased by 16 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM oraclecloud compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 1 grown files:

./usr/share/SLSA/coreos-base_oem-oraclecloud-0.json.zst by 14 bytes from 604 bytes to 618 bytes

All 0 shrunk files:


Total size difference: increased by 14 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM proxmoxve compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 1 grown files:

./usr/share/SLSA/coreos-base_oem-proxmoxve-0.json.zst by 17 bytes from 601 bytes to 618 bytes

All 0 shrunk files:


Total size difference: increased by 17 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM qemu compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 1 grown files:

./usr/share/SLSA/coreos-base_oem-qemu-0.0.2.json.zst by 20 bytes from 601 bytes to 621 bytes

All 0 shrunk files:


Total size difference: increased by 20 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM scaleway compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 1 grown files:

./usr/share/SLSA/coreos-base_oem-scaleway-0.json.zst by 16 bytes from 598 bytes to 614 bytes

All 0 shrunk files:


Total size difference: increased by 16 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM stackit compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 2 grown files:

./usr/share/SLSA/net-misc_chrony-4.8-r1.json.zst by 19 bytes from 2521 bytes (2 kbytes) to 2540 bytes (2 kbytes)
./usr/share/SLSA/coreos-base_oem-stackit-0.json.zst by 18 bytes from 1051 bytes (1 kbytes) to 1069 bytes (1 kbytes)

All 0 shrunk files:


Total size difference: increased by 37 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Changelog against alpha-4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

_Changes since **Alpha 4722.0.0**_

#### Security fixes:


#### Bug fixes:


#### Changes:


#### Updates:

- Linux Firmware ([20260519](https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tag/?h=20260519))
- ca-certificates ([3.125](https://firefox-source-docs.mozilla.org/security/nss/releases/nss_3_125.html))

@github-actions

Copy link
Copy Markdown

Image changes reports (amd64)

image-changes-reports-nightly
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Image differences compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================

diff --git a/tmp/4734.0.0+nightly-20260617-2100-59NQHj b/tmp/.-8yWBj1
index bc648e0484..84896b896b 100644
--- a/tmp/4734.0.0+nightly-20260617-2100-59NQHj
+++ b/tmp/.-8yWBj1
@@ -99,7 +99,7 @@ app-emulation/qemu-guest-agent-9.2.0::portage-stable
 app-emulation/xenserver-pv-version-6.2.0::coreos-overlay
 app-emulation/xenstore-4.14.2-r3::coreos-overlay
 app-misc/c_rehash-1.7-r1::portage-stable
-app-misc/ca-certificates-3.124::coreos-overlay
+app-misc/ca-certificates-3.125::coreos-overlay
 app-misc/jq-1.8.1::portage-stable
 app-misc/pax-utils-1.3.10::portage-stable
 app-shells/bash-5.3_p9-r1::portage-stable

Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================

diff --git a/tmp/4734.0.0+nightly-20260617-2100-2MZWTu b/tmp/.-E7zpzk
index ba403428aa..b5e8981c7f 100644
--- a/tmp/4734.0.0+nightly-20260617-2100-2MZWTu
+++ b/tmp/.-E7zpzk
@@ -15808,7 +15808,7 @@
 /usr/share/SLSA/app-emulation_xenserver-pv-version-6.2.0.json.zst
 /usr/share/SLSA/app-emulation_xenstore-4.14.2-r3.json.zst
 /usr/share/SLSA/app-misc_c_rehash-1.7-r1.json.zst
-/usr/share/SLSA/app-misc_ca-certificates-3.124.json.zst
+/usr/share/SLSA/app-misc_ca-certificates-3.125.json.zst
 /usr/share/SLSA/app-misc_jq-1.8.1.json.zst
 /usr/share/SLSA/app-misc_pax-utils-1.3.10.json.zst
 /usr/share/SLSA/app-shells_bash-5.3_p9-r1.json.zst
@@ -16131,13 +16131,11 @@
 /usr/share/ca-certificates/5f15c80c.0
 /usr/share/ca-certificates/5f618aec.0
 /usr/share/ca-certificates/607986c7.0
-/usr/share/ca-certificates/616816f6.0
 /usr/share/ca-certificates/626dceaf.0
 /usr/share/ca-certificates/6805c744.0
 /usr/share/ca-certificates/68dd7389.0
 /usr/share/ca-certificates/69cf9657.0
 /usr/share/ca-certificates/6a9bdba3.0
-/usr/share/ca-certificates/6b99d060.0
 /usr/share/ca-certificates/6d41d539.0
 /usr/share/ca-certificates/6fa5da56.0
 /usr/share/ca-certificates/749e9e03.0
@@ -16230,7 +16228,6 @@
 /usr/share/ca-certificates/DigiCert_TLS_RSA4096_Root_G5.pem
 /usr/share/ca-certificates/DigiCert_Trusted_Root_G4.pem
 /usr/share/ca-certificates/Entrust.net_Premium_2048_Secure_Server_CA.pem
-/usr/share/ca-certificates/Entrust_Root_Certification_Authority.pem
 /usr/share/ca-certificates/Entrust_Root_Certification_Authority_-_EC1.pem
 /usr/share/ca-certificates/Entrust_Root_Certification_Authority_-_G2.pem
 /usr/share/ca-certificates/Entrust_Root_Certification_Authority_-_G4.pem
@@ -16293,9 +16290,9 @@
 /usr/share/ca-certificates/Sectigo_Public_Email_Protection_Root_R46.pem
 /usr/share/ca-certificates/Sectigo_Public_Server_Authentication_Root_E46.pem
 /usr/share/ca-certificates/Sectigo_Public_Server_Authentication_Root_R46.pem
-/usr/share/ca-certificates/SecureSign_Root_CA12.pem
 /usr/share/ca-certificates/SecureSign_Root_CA14.pem
 /usr/share/ca-certificates/SecureSign_Root_CA15.pem
+/usr/share/ca-certificates/SecureSign_Root_CA16.pem
 /usr/share/ca-certificates/Security_Communication_ECC_RootCA1.pem
 /usr/share/ca-certificates/Security_Communication_RootCA2.pem
 /usr/share/ca-certificates/Staat_der_Nederlanden_Root_CA_-_G3.pem
@@ -16338,6 +16335,7 @@
 /usr/share/ca-certificates/b1159c4c.0
 /usr/share/ca-certificates/b1b8a7f3.0
 /usr/share/ca-certificates/b433981b.0
+/usr/share/ca-certificates/b548496f.0
 /usr/share/ca-certificates/b7a5b843.0
 /usr/share/ca-certificates/b81b93f0.0
 /usr/share/ca-certificates/b8d25de6.0
@@ -17102,13 +17100,11 @@
 /usr/share/flatcar/etc/ssl/certs/5f15c80c.0
 /usr/share/flatcar/etc/ssl/certs/5f618aec.0
 /usr/share/flatcar/etc/ssl/certs/607986c7.0
-/usr/share/flatcar/etc/ssl/certs/616816f6.0
 /usr/share/flatcar/etc/ssl/certs/626dceaf.0
 /usr/share/flatcar/etc/ssl/certs/6805c744.0
 /usr/share/flatcar/etc/ssl/certs/68dd7389.0
 /usr/share/flatcar/etc/ssl/certs/69cf9657.0
 /usr/share/flatcar/etc/ssl/certs/6a9bdba3.0
-/usr/share/flatcar/etc/ssl/certs/6b99d060.0
 /usr/share/flatcar/etc/ssl/certs/6d41d539.0
 /usr/share/flatcar/etc/ssl/certs/6fa5da56.0
 /usr/share/flatcar/etc/ssl/certs/749e9e03.0
@@ -17201,7 +17197,6 @@
 /usr/share/flatcar/etc/ssl/certs/DigiCert_TLS_RSA4096_Root_G5.pem
 /usr/share/flatcar/etc/ssl/certs/DigiCert_Trusted_Root_G4.pem
 /usr/share/flatcar/etc/ssl/certs/Entrust.net_Premium_2048_Secure_Server_CA.pem
-/usr/share/flatcar/etc/ssl/certs/Entrust_Root_Certification_Authority.pem
 /usr/share/flatcar/etc/ssl/certs/Entrust_Root_Certification_Authority_-_EC1.pem
 /usr/share/flatcar/etc/ssl/certs/Entrust_Root_Certification_Authority_-_G2.pem
 /usr/share/flatcar/etc/ssl/certs/Entrust_Root_Certification_Authority_-_G4.pem
@@ -17264,9 +17259,9 @@
 /usr/share/flatcar/etc/ssl/certs/Sectigo_Public_Email_Protection_Root_R46.pem
 /usr/share/flatcar/etc/ssl/certs/Sectigo_Public_Server_Authentication_Root_E46.pem
 /usr/share/flatcar/etc/ssl/certs/Sectigo_Public_Server_Authentication_Root_R46.pem
-/usr/share/flatcar/etc/ssl/certs/SecureSign_Root_CA12.pem
 /usr/share/flatcar/etc/ssl/certs/SecureSign_Root_CA14.pem
 /usr/share/flatcar/etc/ssl/certs/SecureSign_Root_CA15.pem
+/usr/share/flatcar/etc/ssl/certs/SecureSign_Root_CA16.pem
 /usr/share/flatcar/etc/ssl/certs/Security_Communication_ECC_RootCA1.pem
 /usr/share/flatcar/etc/ssl/certs/Security_Communication_RootCA2.pem
 /usr/share/flatcar/etc/ssl/certs/Staat_der_Nederlanden_Root_CA_-_G3.pem
@@ -17309,6 +17304,7 @@
 /usr/share/flatcar/etc/ssl/certs/b1159c4c.0
 /usr/share/flatcar/etc/ssl/certs/b1b8a7f3.0
 /usr/share/flatcar/etc/ssl/certs/b433981b.0
+/usr/share/flatcar/etc/ssl/certs/b548496f.0
 /usr/share/flatcar/etc/ssl/certs/b7a5b843.0
 /usr/share/flatcar/etc/ssl/certs/b81b93f0.0
 /usr/share/flatcar/etc/ssl/certs/b8d25de6.0

Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 1 just deleted files:

./usr/share/ca-certificates/Entrust_Root_Certification_Authority.pem (1643 bytes, 1 kbytes)

Top 10 grown in size files (of 331 files total):

./boot/flatcar/vmlinuz-a by 65536 bytes (64 kbytes) from 35154424 bytes (34330 kbytes, 33 mbytes) to 35219960 bytes (34394 kbytes, 33 mbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/kernel/kheaders.ko.xz by 1772 bytes (1 kbytes) from 4377792 bytes (4275 kbytes, 4 mbytes) to 4379564 bytes (4276 kbytes, 4 mbytes)
./usr/share/flatcar/etc/udev/hwdb.bin by 700 bytes from 13531519 bytes (13214 kbytes, 12 mbytes) to 13532219 bytes (13215 kbytes, 12 mbytes)
./usr/share/ca-certificates/SecureSign_Root_CA16.pem (from ./usr/share/ca-certificates/SecureSign_Root_CA12.pem) by 691 bytes from 1257 bytes (1 kbytes) to 1948 bytes (1 kbytes)
./usr/share/licenses/licenses.json.bz2 by 435 bytes from 475688 bytes (464 kbytes) to 476123 bytes (464 kbytes)
./usr/share/SLSA/net-misc_curl-8.19.0.json.zst by 94 bytes from 42266 bytes (41 kbytes) to 42360 bytes (41 kbytes)
./usr/lib/os-release by 60 bytes from 556 bytes to 616 bytes
./usr/share/SLSA/sys-kernel_coreos-modules-6.12.93.json.zst by 57 bytes from 660728 bytes (645 kbytes) to 660785 bytes (645 kbytes)
./usr/share/flatcar/lsb-release by 30 bytes from 183 bytes to 213 bytes
./usr/share/SLSA/sys-fs_lvm2-2.03.39.json.zst by 19 bytes from 12352 bytes (12 kbytes) to 12371 bytes (12 kbytes)

Top 10 shrunk in size files (of 346 files total):

./usr/lib/flatcar/bootengine.img by 4096 bytes (4 kbytes) from 56000512 bytes (54688 kbytes, 53 mbytes) to 55996416 bytes (54684 kbytes, 53 mbytes)
./usr/share/ca-certificates/ca-certificates.crt by 952 bytes from 249608 bytes (243 kbytes) to 248656 bytes (242 kbytes)
./usr/share/flatcar/etc-no-whiteouts by 82 bytes from 12690 bytes (12 kbytes) to 12608 bytes (12 kbytes)
./usr/share/SLSA/app-misc_ca-certificates-3.125.json.zst (from ./usr/share/SLSA/app-misc_ca-certificates-3.124.json.zst) by 37 bytes from 14346 bytes (14 kbytes) to 14309 bytes (13 kbytes)
./usr/share/SLSA/sys-kernel_dracut-110-r5.json.zst by 23 bytes from 32583 bytes (31 kbytes) to 32560 bytes (31 kbytes)
./usr/share/SLSA/sys-apps_coreutils-9.11.json.zst by 17 bytes from 17084 bytes (16 kbytes) to 17067 bytes (16 kbytes)
./usr/share/SLSA/sys-apps_keyutils-1.6.3-r1.json.zst by 16 bytes from 4725 bytes (4 kbytes) to 4709 bytes (4 kbytes)
./usr/share/SLSA/sys-apps_util-linux-2.41.4-r1.json.zst by 15 bytes from 32811 bytes (32 kbytes) to 32796 bytes (32 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/fs/fuse/fuse.ko.xz by 8 bytes from 98376 bytes (96 kbytes) to 98368 bytes (96 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/net/ethernet/mellanox/mlx5/core/mlx5_core.ko.xz by 8 bytes from 979128 bytes (956 kbytes) to 979120 bytes (956 kbytes)

Total size difference: increased by 62514 bytes (61 kbytes)

Image kernel config changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=================================================================================================


Image file size change (includes /boot, /usr and the default rootfs partitions), compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================================================================================

diff --git a/tmp/4734.0.0+nightly-20260617-2100-IN5fOR b/tmp/.-JY5Ua5
index 9b365ac221..cadf1f08a1 100644
--- a/tmp/4734.0.0+nightly-20260617-2100-IN5fOR
+++ b/tmp/.-JY5Ua5
@@ -1,5 +1,5 @@
 File    Size  Used Avail Use% Type
 /boot  1022M   40M  983M   4% vfat
-/usr   1016M  562M  219M  72% btrfs
+/usr   1016M  578M  331M  64% btrfs
 /       1.6G  480K  1.5G   1% ext4
-SUM     3.6G  603M  2.7G  19% -
+SUM     3.6G  618M  2.8G  18% -

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Init ramdisk differences compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Image init ramdisk file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================================


Image init ramdisk file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
==========================================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 0 grown files:


All 0 shrunk files:


Total size difference: increased by 0 bytes

Take the total size difference with a grain of salt as normally initrd is compressed, so the actual difference will be smaller.
To see the actual difference in size, see if there was a report for /boot/flatcar/vmlinuz-a.
Note that vmlinuz-a also contains the kernel code, which might have changed too, so the reported difference does not accurately describe the change in initrd.


!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Real/full init ramdisk (bootengine.img) differences compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Real/full init ramdisk (bootengine.img) file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
==========================================================================================================================


Real/full init ramdisk (bootengine.img) file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
===============================================================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


Top 10 grown in size files (of 87 files total):

./usr/lib/modules/a.b.c-flatcar/kernel/drivers/net/ethernet/intel/e1000/e1000.ko.xz by 12 bytes from 71524 bytes (69 kbytes) to 71536 bytes (69 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/uio/uio.ko.xz by 8 bytes from 9924 bytes (9 kbytes) to 9932 bytes (9 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/message/fusion/mptbase.ko.xz by 8 bytes from 50888 bytes (49 kbytes) to 50896 bytes (49 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/usb/storage/usb-storage.ko.xz by 8 bytes from 37144 bytes (36 kbytes) to 37152 bytes (36 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/mmc/host/sdhci.ko.xz by 8 bytes from 36948 bytes (36 kbytes) to 36956 bytes (36 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/net/ethernet/nvidia/forcedeth.ko.xz by 8 bytes from 36784 bytes (35 kbytes) to 36792 bytes (35 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/block/aoe/aoe.ko.xz by 8 bytes from 28840 bytes (28 kbytes) to 28848 bytes (28 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/net/ethernet/chelsio/cxgb4/cxgb4.ko.xz by 8 bytes from 275596 bytes (269 kbytes) to 275604 bytes (269 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/net/ethernet/intel/igbvf/igbvf.ko.xz by 8 bytes from 26024 bytes (25 kbytes) to 26032 bytes (25 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/block/nbd.ko.xz by 8 bytes from 25656 bytes (25 kbytes) to 25664 bytes (25 kbytes)

Top 10 shrunk in size files (of 131 files total):

./usr/share/ca-certificates/ca-certificates.crt by 952 bytes from 249608 bytes (243 kbytes) to 248656 bytes (242 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/fs/fuse/fuse.ko.xz by 8 bytes from 98376 bytes (96 kbytes) to 98368 bytes (96 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/net/ethernet/mellanox/mlx5/core/mlx5_core.ko.xz by 8 bytes from 979128 bytes (956 kbytes) to 979120 bytes (956 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/md/raid456.ko.xz by 8 bytes from 90672 bytes (88 kbytes) to 90664 bytes (88 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/scsi/fnic/fnic.ko.xz by 8 bytes from 80340 bytes (78 kbytes) to 80332 bytes (78 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/crypto/xor.ko.xz by 8 bytes from 5832 bytes (5 kbytes) to 5824 bytes (5 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/fs/erofs/erofs.ko.xz by 8 bytes from 57180 bytes (55 kbytes) to 57172 bytes (55 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/hv/hv_vmbus.ko.xz by 8 bytes from 55528 bytes (54 kbytes) to 55520 bytes (54 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/net/core/failover.ko.xz by 8 bytes from 4876 bytes (4 kbytes) to 4868 bytes (4 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/fs/smb/client/cifs.ko.xz by 8 bytes from 483532 bytes (472 kbytes) to 483524 bytes (472 kbytes)

Total size difference: decreased by 1144 bytes (1 kbytes)

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Base sysext containerd-flatcar changes compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 0 grown files:


All 2 shrunk files:

./usr/share/SLSA/app-containers_containerd-2.2.2.json.zst by 1 bytes from 6830 bytes (6 kbytes) to 6829 bytes (6 kbytes)
./usr/share/SLSA/app-containers_runc-1.4.0-r1.json.zst by 1 bytes from 2998 bytes (2 kbytes) to 2997 bytes (2 kbytes)

Total size difference: decreased by 2 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Base sysext docker-flatcar changes compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 2 grown files:

./usr/share/SLSA/app-containers_docker-28.2.2.json.zst by 10 bytes from 10203 bytes (9 kbytes) to 10213 bytes (9 kbytes)
./usr/share/SLSA/app-containers_docker-buildx-0.21.2.json.zst by 1 bytes from 960 bytes to 961 bytes

All 3 shrunk files:

./usr/share/SLSA/sys-process_tini-0.19.0-r2.json.zst by 4 bytes from 937 bytes to 933 bytes
./usr/share/SLSA/app-containers_docker-cli-29.1.3.json.zst by 4 bytes from 14205 bytes (13 kbytes) to 14201 bytes (13 kbytes)
./usr/share/SLSA/acct-group_docker-0-r3.json.zst by 2 bytes from 635 bytes to 633 bytes

Total size difference: increased by 1 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Extra sysext overlaybd changes compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 0 grown files:


All 1 shrunk files:

./usr/share/SLSA/app-containers_accelerated-container-image-1.4.3.json.zst by 2 bytes from 1502 bytes (1 kbytes) to 1500 bytes (1 kbytes)

Total size difference: decreased by 2 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Extra sysext incus changes compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 10 grown files:

./usr/share/SLSA/app-containers_lxc-6.0.5.json.zst by 7 bytes from 6821 bytes (6 kbytes) to 6828 bytes (6 kbytes)
./usr/share/SLSA/sys-fs_lxcfs-6.0.5.json.zst by 5 bytes from 1716 bytes (1 kbytes) to 1721 bytes (1 kbytes)
./usr/share/SLSA/dev-util_xdelta-3.0.11-r1.json.zst by 4 bytes from 1194 bytes (1 kbytes) to 1198 bytes (1 kbytes)
./usr/share/SLSA/virtual_acl-0-r2.json.zst by 3 bytes from 610 bytes to 613 bytes
./usr/share/SLSA/net-dns_dnsmasq-2.92_p2.json.zst by 3 bytes from 2377 bytes (2 kbytes) to 2380 bytes (2 kbytes)
./usr/share/SLSA/acct-group_incus-admin-0.json.zst by 2 bytes from 741 bytes to 743 bytes
./usr/share/SLSA/acct-group_lxc-0-r2.json.zst by 2 bytes from 735 bytes to 737 bytes
./usr/share/SLSA/sys-fs_fuse-3.18.2.json.zst by 2 bytes from 1893 bytes (1 kbytes) to 1895 bytes (1 kbytes)
./usr/share/SLSA/acct-group_cuse-0.json.zst by 1 bytes from 629 bytes to 630 bytes
./usr/share/SLSA/dev-libs_raft-0.22.1.json.zst by 1 bytes from 1248 bytes (1 kbytes) to 1249 bytes (1 kbytes)

All 4 shrunk files:

./usr/share/SLSA/app-containers_incus-6.0.5-r1.json.zst by 7 bytes from 83110 bytes (81 kbytes) to 83103 bytes (81 kbytes)
./usr/share/SLSA/acct-user_dnsmasq-0-r3.json.zst by 3 bytes from 637 bytes to 634 bytes
./usr/share/SLSA/acct-group_dnsmasq-0-r3.json.zst by 1 bytes from 638 bytes to 637 bytes
./usr/share/SLSA/sys-fs_fuse-common-3.10.4-r3.json.zst by 1 bytes from 1098 bytes (1 kbytes) to 1097 bytes (1 kbytes)

Total size difference: increased by 18 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Extra sysext nvidia-drivers-535 changes compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 2 grown files:

./usr/share/SLSA/x11-drivers_nvidia-drivers-535.309.01.json.zst by 22 bytes from 12645 bytes (12 kbytes) to 12667 bytes (12 kbytes)
./usr/share/SLSA/acct-user_nvpd-0-r2.json.zst by 1 bytes from 637 bytes to 638 bytes

All 0 shrunk files:


Total size difference: increased by 23 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Extra sysext nvidia-drivers-535-open changes compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 2 grown files:

./usr/share/SLSA/x11-drivers_nvidia-drivers-535.309.01.json.zst by 23 bytes from 12643 bytes (12 kbytes) to 12666 bytes (12 kbytes)
./usr/share/SLSA/acct-user_nvpd-0-r2.json.zst by 1 bytes from 637 bytes to 638 bytes

All 0 shrunk files:


Total size difference: increased by 24 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Extra sysext nvidia-drivers-550 changes compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 2 grown files:

./usr/share/SLSA/x11-drivers_old-nvidia-drivers-550.163.01-r1.json.zst by 8 bytes from 12294 bytes (12 kbytes) to 12302 bytes (12 kbytes)
./usr/share/SLSA/acct-user_nvpd-0-r2.json.zst by 1 bytes from 637 bytes to 638 bytes

All 0 shrunk files:


Total size difference: increased by 9 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Extra sysext nvidia-drivers-550-open changes compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 2 grown files:

./usr/share/SLSA/x11-drivers_old-nvidia-drivers-550.163.01-r1.json.zst by 7 bytes from 12296 bytes (12 kbytes) to 12303 bytes (12 kbytes)
./usr/share/SLSA/acct-user_nvpd-0-r2.json.zst by 1 bytes from 637 bytes to 638 bytes

All 0 shrunk files:


Total size difference: increased by 8 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Extra sysext nvidia-drivers-570 changes compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 1 grown files:

./usr/share/SLSA/acct-user_nvpd-0-r2.json.zst by 1 bytes from 637 bytes to 638 bytes

All 0 shrunk files:


Total size difference: increased by 1 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Extra sysext nvidia-drivers-570-open changes compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 1 grown files:

./usr/share/SLSA/acct-user_nvpd-0-r2.json.zst by 1 bytes from 637 bytes to 638 bytes

All 0 shrunk files:


Total size difference: increased by 1 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Extra sysext podman changes compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 7 grown files:

./usr/share/SLSA/app-containers_containers-shortnames-2025.03.19.json.zst by 4 bytes from 756 bytes to 760 bytes
./usr/share/SLSA/app-containers_crun-1.21.json.zst by 3 bytes from 1115 bytes (1 kbytes) to 1118 bytes (1 kbytes)
./usr/share/SLSA/sys-fs_fuse-3.18.2.json.zst by 2 bytes from 1893 bytes (1 kbytes) to 1895 bytes (1 kbytes)
./usr/share/SLSA/app-containers_catatonit-0.2.1.json.zst by 1 bytes from 846 bytes to 847 bytes
./usr/share/SLSA/app-containers_containers-storage-1.59.1.json.zst by 1 bytes from 842 bytes to 843 bytes
./usr/share/SLSA/acct-group_cuse-0.json.zst by 1 bytes from 629 bytes to 630 bytes
./usr/share/SLSA/net-misc_passt-2025.12.15.json.zst by 1 bytes from 1425 bytes (1 kbytes) to 1426 bytes (1 kbytes)

All 5 shrunk files:

./usr/share/SLSA/app-containers_podman-5.7.1.json.zst by 12 bytes from 19671 bytes (19 kbytes) to 19659 bytes (19 kbytes)
./usr/share/SLSA/app-containers_aardvark-dns-1.17.0.json.zst by 3 bytes from 966 bytes to 963 bytes
./usr/share/SLSA/sys-fs_fuse-overlayfs-1.16.json.zst by 2 bytes from 1026 bytes (1 kbytes) to 1024 bytes (1 kbytes)
./usr/share/SLSA/dev-libs_yajl-2.1.0-r6.json.zst by 1 bytes from 1842 bytes (1 kbytes) to 1841 bytes (1 kbytes)
./usr/share/SLSA/sys-fs_fuse-common-3.10.4-r3.json.zst by 1 bytes from 1098 bytes (1 kbytes) to 1097 bytes (1 kbytes)

Total size difference: decreased by 6 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Extra sysext python changes compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 0 grown files:


All 0 shrunk files:


Total size difference: increased by 0 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Extra sysext zfs changes compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 2 grown files:

./usr/share/SLSA/sys-fs_zfs-kmod-2.3.6.json.zst by 4 bytes from 21412 bytes (20 kbytes) to 21416 bytes (20 kbytes)
./usr/share/SLSA/sys-fs_zfs-2.3.6.json.zst by 2 bytes from 34991 bytes (34 kbytes) to 34993 bytes (34 kbytes)

All 0 shrunk files:


Total size difference: increased by 6 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM akamai compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 1 grown files:

./usr/share/SLSA/coreos-base_oem-akamai-0.json.zst by 2 bytes from 612 bytes to 614 bytes

All 0 shrunk files:


Total size difference: increased by 2 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM ami compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 1 grown files:

./usr/share/SLSA/coreos-base_flatcar-eks-0.0.1-r4.json.zst by 3 bytes from 1437 bytes (1 kbytes) to 1440 bytes (1 kbytes)

All 1 shrunk files:

./usr/share/SLSA/coreos-base_oem-ami-3.3.2299.0.json.zst by 1 bytes from 824 bytes to 823 bytes

Total size difference: increased by 2 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM azure compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 4 grown files:

./usr/share/SLSA/dev-python_urllib3-2.7.0.json.zst by 8 bytes from 9151 bytes (8 kbytes) to 9159 bytes (8 kbytes)
./usr/share/SLSA/dev-python_distro-1.9.0.json.zst by 5 bytes from 1988 bytes (1 kbytes) to 1993 bytes (1 kbytes)
./usr/share/SLSA/app-emulation_hv-daemons-6.12.93.json.zst by 2 bytes from 1179 bytes (1 kbytes) to 1181 bytes (1 kbytes)
./usr/share/SLSA/coreos-base_oem-azure-2.12.0.4-r2.json.zst by 2 bytes from 1096 bytes (1 kbytes) to 1098 bytes (1 kbytes)

All 2 shrunk files:

./usr/share/SLSA/app-emulation_wa-linux-agent-2.12.0.4-r2.json.zst by 7 bytes from 25580 bytes (24 kbytes) to 25573 bytes (24 kbytes)
./usr/share/SLSA/dev-python_pysocks-1.7.1-r2.json.zst by 2 bytes from 1590 bytes (1 kbytes) to 1588 bytes (1 kbytes)

Total size difference: increased by 8 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM cloudsigma compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 0 grown files:


All 0 shrunk files:


Total size difference: increased by 0 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM cloudstack compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 0 grown files:


All 1 shrunk files:

./usr/share/SLSA/coreos-base_oem-cloudstack-1.0.0.json.zst by 1 bytes from 1178 bytes (1 kbytes) to 1177 bytes (1 kbytes)

Total size difference: decreased by 1 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM digitalocean compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 0 grown files:


All 1 shrunk files:

./usr/share/SLSA/coreos-base_oem-digitalocean-0.1.1-r2.json.zst by 1 bytes from 624 bytes to 623 bytes

Total size difference: decreased by 1 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM exoscale compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 0 grown files:


All 0 shrunk files:


Total size difference: increased by 0 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM gce compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 5 grown files:

./usr/share/SLSA/dev-python_boto-2.49.0-r8.json.zst by 136 bytes from 80154 bytes (78 kbytes) to 80290 bytes (78 kbytes)
./usr/share/SLSA/app-emulation_google-compute-engine-20190124-r4.json.zst by 10 bytes from 13674 bytes (13 kbytes) to 13684 bytes (13 kbytes)
./usr/share/SLSA/dev-python_distro-1.9.0.json.zst by 5 bytes from 1988 bytes (1 kbytes) to 1993 bytes (1 kbytes)
./usr/share/SLSA/coreos-base_oem-gce-20260504.json.zst by 1 bytes from 1580 bytes (1 kbytes) to 1581 bytes (1 kbytes)
./usr/share/SLSA/dev-python_six-1.17.0.json.zst by 1 bytes from 1422 bytes (1 kbytes) to 1423 bytes (1 kbytes)

All 0 shrunk files:


Total size difference: increased by 153 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM hetzner compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 0 grown files:


All 1 shrunk files:

./usr/share/SLSA/coreos-base_oem-hetzner-0.json.zst by 2 bytes from 617 bytes to 615 bytes

Total size difference: decreased by 2 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM hyperv compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 1 grown files:

./usr/share/SLSA/app-emulation_hv-daemons-6.12.93.json.zst by 2 bytes from 1179 bytes (1 kbytes) to 1181 bytes (1 kbytes)

All 1 shrunk files:

./usr/share/SLSA/coreos-base_oem-hyperv-0.2.0.json.zst by 2 bytes from 619 bytes to 617 bytes

Total size difference: increased by 0 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM kubevirt compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 0 grown files:


All 0 shrunk files:


Total size difference: increased by 0 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM nutanix compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 1 grown files:

./usr/share/SLSA/coreos-base_oem-nutanix-0.0.1.json.zst by 2 bytes from 617 bytes to 619 bytes

All 0 shrunk files:


Total size difference: increased by 2 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM openstack compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 1 grown files:

./usr/share/SLSA/coreos-base_oem-openstack-0.json.zst by 1 bytes from 617 bytes to 618 bytes

All 0 shrunk files:


Total size difference: increased by 1 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM oraclecloud compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 0 grown files:


All 0 shrunk files:


Total size difference: increased by 0 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM proxmoxve compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 1 grown files:

./usr/share/SLSA/coreos-base_oem-proxmoxve-0.json.zst by 1 bytes from 619 bytes to 620 bytes

All 0 shrunk files:


Total size difference: increased by 1 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM qemu compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 0 grown files:


All 0 shrunk files:


Total size difference: increased by 0 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM scaleway compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 0 grown files:


All 1 shrunk files:

./usr/share/SLSA/coreos-base_oem-scaleway-0.json.zst by 1 bytes from 615 bytes to 614 bytes

Total size difference: decreased by 1 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM stackit compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 1 grown files:

./usr/share/SLSA/coreos-base_oem-stackit-0.json.zst by 1 bytes from 1068 bytes (1 kbytes) to 1069 bytes (1 kbytes)

All 0 shrunk files:


Total size difference: increased by 1 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM vagrant compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 1 grown files:

./usr/share/SLSA/coreos-base_oem-vagrant-1.0.0.json.zst by 1 bytes from 817 bytes to 818 bytes

All 0 shrunk files:


Total size difference: increased by 1 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM virtualbox compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 0 grown files:


All 0 shrunk files:


Total size difference: increased by 0 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM vmware compared to development version main 4734.0.0+nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to development version main 4734.0.0+nightly-20260617-2100:
=====================================================================================


Image file changes, compared to development version main 4734.0.0+nightly-20260617-2100:
========================================================================================


Image file size changes, compared to development version main 4734.0.0+nightly-20260617-2100:
=============================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 5 grown files:

./usr/share/SLSA/coreos-base_oem-vmware-13.0.10.json.zst by 2 bytes from 901 bytes to 903 bytes
./usr/share/SLSA/sys-fs_fuse-3.18.2.json.zst by 2 bytes from 1893 bytes (1 kbytes) to 1895 bytes (1 kbytes)
./usr/share/SLSA/acct-group_cuse-0.json.zst by 1 bytes from 629 bytes to 630 bytes
./usr/share/SLSA/dev-libs_libdnet-1.18.2.json.zst by 1 bytes from 2694 bytes (2 kbytes) to 2695 bytes (2 kbytes)
./usr/share/SLSA/dev-libs_libmspack-1.11.json.zst by 1 bytes from 1297 bytes (1 kbytes) to 1298 bytes (1 kbytes)

All 4 shrunk files:

./usr/share/SLSA/app-emulation_open-vm-tools-13.0.10.json.zst by 4 bytes from 8265 bytes (8 kbytes) to 8261 bytes (8 kbytes)
./usr/share/SLSA/dev-libs_libltdl-2.5.4.json.zst by 2 bytes from 1272 bytes (1 kbytes) to 1270 bytes (1 kbytes)
./usr/share/SLSA/dev-libs_libxslt-1.1.45.json.zst by 1 bytes from 6572 bytes (6 kbytes) to 6571 bytes (6 kbytes)
./usr/share/SLSA/sys-fs_fuse-common-3.10.4-r3.json.zst by 1 bytes from 1098 bytes (1 kbytes) to 1097 bytes (1 kbytes)

Total size difference: decreased by 1 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Changelog against main-4734.0.0-nightly-20260617-2100 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

_Changes since **Main 4734.0.0 nightly 20260617 2100**_

#### Security fixes:


#### Bug fixes:


#### Changes:


#### Updates:

- ca-certificates ([3.125](https://firefox-source-docs.mozilla.org/security/nss/releases/nss_3_125.html))
image-changes-reports-release
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Image differences compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================

diff --git a/tmp/4722.0.0-SfbsSr b/tmp/.-u4CQXF
index d39e41b593..84896b896b 100644
--- a/tmp/4722.0.0-SfbsSr
+++ b/tmp/.-u4CQXF
@@ -99,7 +99,7 @@ app-emulation/qemu-guest-agent-9.2.0::portage-stable
 app-emulation/xenserver-pv-version-6.2.0::coreos-overlay
 app-emulation/xenstore-4.14.2-r3::coreos-overlay
 app-misc/c_rehash-1.7-r1::portage-stable
-app-misc/ca-certificates-3.124::coreos-overlay
+app-misc/ca-certificates-3.125::coreos-overlay
 app-misc/jq-1.8.1::portage-stable
 app-misc/pax-utils-1.3.10::portage-stable
 app-shells/bash-5.3_p9-r1::portage-stable
@@ -277,7 +277,7 @@ sys-fs/multipath-tools-0.14.3::portage-stable
 sys-fs/quota-4.11::portage-stable
 sys-fs/xfsprogs-6.19.0::portage-stable
 sys-kernel/bootengine-0.0.38-r47::coreos-overlay
-sys-kernel/coreos-firmware-20260410::coreos-overlay
+sys-kernel/coreos-firmware-20260519::coreos-overlay
 sys-kernel/coreos-kernel-6.12.93::coreos-overlay
 sys-kernel/coreos-modules-6.12.93::coreos-overlay
 sys-kernel/dracut-110-r5::portage-stable

Image file changes, compared to alpha 4722.0.0:
===============================================

diff --git a/tmp/4722.0.0-YgLD0R b/tmp/.-v3i1kU
index 6d277dd7ef..b5e8981c7f 100644
--- a/tmp/4722.0.0-YgLD0R
+++ b/tmp/.-v3i1kU
@@ -15808,7 +15808,7 @@
 /usr/share/SLSA/app-emulation_xenserver-pv-version-6.2.0.json.zst
 /usr/share/SLSA/app-emulation_xenstore-4.14.2-r3.json.zst
 /usr/share/SLSA/app-misc_c_rehash-1.7-r1.json.zst
-/usr/share/SLSA/app-misc_ca-certificates-3.124.json.zst
+/usr/share/SLSA/app-misc_ca-certificates-3.125.json.zst
 /usr/share/SLSA/app-misc_jq-1.8.1.json.zst
 /usr/share/SLSA/app-misc_pax-utils-1.3.10.json.zst
 /usr/share/SLSA/app-shells_bash-5.3_p9-r1.json.zst
@@ -15986,7 +15986,7 @@
 /usr/share/SLSA/sys-fs_quota-4.11.json.zst
 /usr/share/SLSA/sys-fs_xfsprogs-6.19.0.json.zst
 /usr/share/SLSA/sys-kernel_bootengine-0.0.38-r47.json.zst
-/usr/share/SLSA/sys-kernel_coreos-firmware-20260410.json.zst
+/usr/share/SLSA/sys-kernel_coreos-firmware-20260519.json.zst
 /usr/share/SLSA/sys-kernel_coreos-kernel-6.12.93.json.zst
 /usr/share/SLSA/sys-kernel_coreos-modules-6.12.93.json.zst
 /usr/share/SLSA/sys-kernel_dracut-110-r5.json.zst
@@ -16131,13 +16131,11 @@
 /usr/share/ca-certificates/5f15c80c.0
 /usr/share/ca-certificates/5f618aec.0
 /usr/share/ca-certificates/607986c7.0
-/usr/share/ca-certificates/616816f6.0
 /usr/share/ca-certificates/626dceaf.0
 /usr/share/ca-certificates/6805c744.0
 /usr/share/ca-certificates/68dd7389.0
 /usr/share/ca-certificates/69cf9657.0
 /usr/share/ca-certificates/6a9bdba3.0
-/usr/share/ca-certificates/6b99d060.0
 /usr/share/ca-certificates/6d41d539.0
 /usr/share/ca-certificates/6fa5da56.0
 /usr/share/ca-certificates/749e9e03.0
@@ -16230,7 +16228,6 @@
 /usr/share/ca-certificates/DigiCert_TLS_RSA4096_Root_G5.pem
 /usr/share/ca-certificates/DigiCert_Trusted_Root_G4.pem
 /usr/share/ca-certificates/Entrust.net_Premium_2048_Secure_Server_CA.pem
-/usr/share/ca-certificates/Entrust_Root_Certification_Authority.pem
 /usr/share/ca-certificates/Entrust_Root_Certification_Authority_-_EC1.pem
 /usr/share/ca-certificates/Entrust_Root_Certification_Authority_-_G2.pem
 /usr/share/ca-certificates/Entrust_Root_Certification_Authority_-_G4.pem
@@ -16293,9 +16290,9 @@
 /usr/share/ca-certificates/Sectigo_Public_Email_Protection_Root_R46.pem
 /usr/share/ca-certificates/Sectigo_Public_Server_Authentication_Root_E46.pem
 /usr/share/ca-certificates/Sectigo_Public_Server_Authentication_Root_R46.pem
-/usr/share/ca-certificates/SecureSign_Root_CA12.pem
 /usr/share/ca-certificates/SecureSign_Root_CA14.pem
 /usr/share/ca-certificates/SecureSign_Root_CA15.pem
+/usr/share/ca-certificates/SecureSign_Root_CA16.pem
 /usr/share/ca-certificates/Security_Communication_ECC_RootCA1.pem
 /usr/share/ca-certificates/Security_Communication_RootCA2.pem
 /usr/share/ca-certificates/Staat_der_Nederlanden_Root_CA_-_G3.pem
@@ -16338,6 +16335,7 @@
 /usr/share/ca-certificates/b1159c4c.0
 /usr/share/ca-certificates/b1b8a7f3.0
 /usr/share/ca-certificates/b433981b.0
+/usr/share/ca-certificates/b548496f.0
 /usr/share/ca-certificates/b7a5b843.0
 /usr/share/ca-certificates/b81b93f0.0
 /usr/share/ca-certificates/b8d25de6.0
@@ -17102,13 +17100,11 @@
 /usr/share/flatcar/etc/ssl/certs/5f15c80c.0
 /usr/share/flatcar/etc/ssl/certs/5f618aec.0
 /usr/share/flatcar/etc/ssl/certs/607986c7.0
-/usr/share/flatcar/etc/ssl/certs/616816f6.0
 /usr/share/flatcar/etc/ssl/certs/626dceaf.0
 /usr/share/flatcar/etc/ssl/certs/6805c744.0
 /usr/share/flatcar/etc/ssl/certs/68dd7389.0
 /usr/share/flatcar/etc/ssl/certs/69cf9657.0
 /usr/share/flatcar/etc/ssl/certs/6a9bdba3.0
-/usr/share/flatcar/etc/ssl/certs/6b99d060.0
 /usr/share/flatcar/etc/ssl/certs/6d41d539.0
 /usr/share/flatcar/etc/ssl/certs/6fa5da56.0
 /usr/share/flatcar/etc/ssl/certs/749e9e03.0
@@ -17201,7 +17197,6 @@
 /usr/share/flatcar/etc/ssl/certs/DigiCert_TLS_RSA4096_Root_G5.pem
 /usr/share/flatcar/etc/ssl/certs/DigiCert_Trusted_Root_G4.pem
 /usr/share/flatcar/etc/ssl/certs/Entrust.net_Premium_2048_Secure_Server_CA.pem
-/usr/share/flatcar/etc/ssl/certs/Entrust_Root_Certification_Authority.pem
 /usr/share/flatcar/etc/ssl/certs/Entrust_Root_Certification_Authority_-_EC1.pem
 /usr/share/flatcar/etc/ssl/certs/Entrust_Root_Certification_Authority_-_G2.pem
 /usr/share/flatcar/etc/ssl/certs/Entrust_Root_Certification_Authority_-_G4.pem
@@ -17264,9 +17259,9 @@
 /usr/share/flatcar/etc/ssl/certs/Sectigo_Public_Email_Protection_Root_R46.pem
 /usr/share/flatcar/etc/ssl/certs/Sectigo_Public_Server_Authentication_Root_E46.pem
 /usr/share/flatcar/etc/ssl/certs/Sectigo_Public_Server_Authentication_Root_R46.pem
-/usr/share/flatcar/etc/ssl/certs/SecureSign_Root_CA12.pem
 /usr/share/flatcar/etc/ssl/certs/SecureSign_Root_CA14.pem
 /usr/share/flatcar/etc/ssl/certs/SecureSign_Root_CA15.pem
+/usr/share/flatcar/etc/ssl/certs/SecureSign_Root_CA16.pem
 /usr/share/flatcar/etc/ssl/certs/Security_Communication_ECC_RootCA1.pem
 /usr/share/flatcar/etc/ssl/certs/Security_Communication_RootCA2.pem
 /usr/share/flatcar/etc/ssl/certs/Staat_der_Nederlanden_Root_CA_-_G3.pem
@@ -17309,6 +17304,7 @@
 /usr/share/flatcar/etc/ssl/certs/b1159c4c.0
 /usr/share/flatcar/etc/ssl/certs/b1b8a7f3.0
 /usr/share/flatcar/etc/ssl/certs/b433981b.0
+/usr/share/flatcar/etc/ssl/certs/b548496f.0
 /usr/share/flatcar/etc/ssl/certs/b7a5b843.0
 /usr/share/flatcar/etc/ssl/certs/b81b93f0.0
 /usr/share/flatcar/etc/ssl/certs/b8d25de6.0
@@ -22650,6 +22646,7 @@
 /usr/share/unimaps/viscii.uni
 /usr/share/update_engine
 /usr/share/update_engine/decode_payload
+/usr/share/update_engine/update-payload-key.key.pem
 /usr/share/update_engine/update-payload-key.pub.pem
 /usr/share/update_engine/update_metadata.proto
 /usr/share/user-tmpfiles.d

Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 1 newly added files:

./usr/share/update_engine/update-payload-key.key.pem (1675 bytes, 1 kbytes)

All 1 just deleted files:

./usr/share/ca-certificates/Entrust_Root_Certification_Authority.pem (1643 bytes, 1 kbytes)

Top 10 grown in size files (of 666 files total):

./boot/flatcar/vmlinuz-a by 71160 bytes (69 kbytes) from 35148800 bytes (34325 kbytes, 33 mbytes) to 35219960 bytes (34394 kbytes, 33 mbytes)
./boot/EFI/boot/bootx64.efi by 49536 bytes (48 kbytes) from 950040 bytes (927 kbytes) to 999576 bytes (976 kbytes)
./usr/lib/firmware/amdgpu/dcn_3_5_dmcub.bin by 11776 bytes (11 kbytes) from 510368 bytes (498 kbytes) to 522144 bytes (509 kbytes)
./usr/lib/firmware/amdgpu/dcn_3_5_1_dmcub.bin by 11776 bytes (11 kbytes) from 510240 bytes (498 kbytes) to 522016 bytes (509 kbytes)
./usr/lib/firmware/amdgpu/psp_14_0_3_ta.bin by 4128 bytes (4 kbytes) from 282912 bytes (276 kbytes) to 287040 bytes (280 kbytes)
./usr/lib/firmware/amdgpu/psp_14_0_2_ta.bin by 4128 bytes (4 kbytes) from 270304 bytes (263 kbytes) to 274432 bytes (268 kbytes)
./usr/lib/firmware/amdgpu/gc_12_0_1_mec.bin by 4096 bytes (4 kbytes) from 451552 bytes (440 kbytes) to 455648 bytes (444 kbytes)
./usr/lib/firmware/amdgpu/gc_12_0_0_mec.bin by 4096 bytes (4 kbytes) from 451552 bytes (440 kbytes) to 455648 bytes (444 kbytes)
./usr/lib/firmware/amdgpu/sienna_cichlid_ta.bin by 4096 bytes (4 kbytes) from 382720 bytes (373 kbytes) to 386816 bytes (377 kbytes)
./usr/lib/firmware/amdgpu/psp_13_0_0_ta.bin by 4096 bytes (4 kbytes) from 267520 bytes (261 kbytes) to 271616 bytes (265 kbytes)

Top 10 shrunk in size files (of 215 files total):

./usr/lib/firmware/amdgpu/gc_12_0_0_me.bin by 7584 bytes (7 kbytes) from 467424 bytes (456 kbytes) to 459840 bytes (449 kbytes)
./usr/lib/flatcar/bootengine.img by 4096 bytes (4 kbytes) from 56000512 bytes (54688 kbytes, 53 mbytes) to 55996416 bytes (54684 kbytes, 53 mbytes)
./usr/lib/firmware/amdgpu/gc_12_0_1_me.bin by 3872 bytes (3 kbytes) from 463712 bytes (452 kbytes) to 459840 bytes (449 kbytes)
./usr/share/ca-certificates/ca-certificates.crt by 952 bytes from 249608 bytes (243 kbytes) to 248656 bytes (242 kbytes)
./usr/lib/firmware/amdgpu/dcn_3_1_4_dmcub.bin by 384 bytes from 351136 bytes (342 kbytes) to 350752 bytes (342 kbytes)
./usr/lib/firmware/amdgpu/gc_12_0_1_pfp.bin by 176 bytes from 353712 bytes (345 kbytes) to 353536 bytes (345 kbytes)
./usr/share/flatcar/etc-no-whiteouts by 82 bytes from 12690 bytes (12 kbytes) to 12608 bytes (12 kbytes)
./usr/share/SLSA/sys-process_procps-4.0.6.json.zst by 22 bytes from 5423 bytes (5 kbytes) to 5401 bytes (5 kbytes)
./usr/share/SLSA/app-crypt_trousers-0.3.15-r1.json.zst by 21 bytes from 10294 bytes (10 kbytes) to 10273 bytes (10 kbytes)
./usr/share/SLSA/net-firewall_iptables-1.8.13.json.zst by 20 bytes from 13271 bytes (12 kbytes) to 13251 bytes (12 kbytes)

Total size difference: increased by 259917 bytes (253 kbytes)

Image kernel config changes, compared to alpha 4722.0.0:
========================================================


Image file size change (includes /boot, /usr and the default rootfs partitions), compared to alpha 4722.0.0:
============================================================================================================

diff --git a/tmp/4722.0.0-Hvnpks b/tmp/.-DMM19a
index 6b18450441..cadf1f08a1 100644
--- a/tmp/4722.0.0-Hvnpks
+++ b/tmp/.-DMM19a
@@ -1,5 +1,5 @@
 File    Size  Used Avail Use% Type
 /boot  1022M   40M  983M   4% vfat
-/usr   1016M  602M  219M  74% btrfs
+/usr   1016M  578M  331M  64% btrfs
 /       1.6G  480K  1.5G   1% ext4
-SUM     3.6G  642M  2.7G  20% -
+SUM     3.6G  618M  2.8G  18% -

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Init ramdisk differences compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Image init ramdisk file changes, compared to alpha 4722.0.0:
============================================================


Image init ramdisk file size changes, compared to alpha 4722.0.0:
=================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 0 grown files:


All 0 shrunk files:


Total size difference: increased by 0 bytes

Take the total size difference with a grain of salt as normally initrd is compressed, so the actual difference will be smaller.
To see the actual difference in size, see if there was a report for /boot/flatcar/vmlinuz-a.
Note that vmlinuz-a also contains the kernel code, which might have changed too, so the reported difference does not accurately describe the change in initrd.


!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Real/full init ramdisk (bootengine.img) differences compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Real/full init ramdisk (bootengine.img) file changes, compared to alpha 4722.0.0:
=================================================================================


Real/full init ramdisk (bootengine.img) file size changes, compared to alpha 4722.0.0:
======================================================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


Top 10 grown in size files (of 115 files total):

./usr/lib/modules/a.b.c-flatcar/kernel/drivers/net/ethernet/brocade/bna/bna.ko.xz by 12 bytes from 90860 bytes (88 kbytes) to 90872 bytes (88 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/ata/libahci.ko.xz by 12 bytes from 27484 bytes (26 kbytes) to 27496 bytes (26 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/hid/hid.ko.xz by 8 bytes from 75656 bytes (73 kbytes) to 75664 bytes (73 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/crypto/algif_skcipher.ko.xz by 8 bytes from 5672 bytes (5 kbytes) to 5680 bytes (5 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/net/core/selftests.ko.xz by 8 bytes from 5360 bytes (5 kbytes) to 5368 bytes (5 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/net/ethernet/broadcom/bnx2.ko.xz by 8 bytes from 52788 bytes (51 kbytes) to 52796 bytes (51 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/net/ethernet/neterion/s2io.ko.xz by 8 bytes from 47096 bytes (45 kbytes) to 47104 bytes (46 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/mmc/host/sdhci.ko.xz by 8 bytes from 36948 bytes (36 kbytes) to 36956 bytes (36 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/md/raid1.ko.xz by 8 bytes from 30072 bytes (29 kbytes) to 30080 bytes (29 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/net/ethernet/atheros/alx/alx.ko.xz by 8 bytes from 25612 bytes (25 kbytes) to 25620 bytes (25 kbytes)

Top 10 shrunk in size files (of 89 files total):

./usr/share/ca-certificates/ca-certificates.crt by 952 bytes from 249608 bytes (243 kbytes) to 248656 bytes (242 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/net/ethernet/qlogic/qede/qede.ko.xz by 8 bytes from 81356 bytes (79 kbytes) to 81348 bytes (79 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/net/vxlan/vxlan.ko.xz by 8 bytes from 64760 bytes (63 kbytes) to 64752 bytes (63 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/block/rbd.ko.xz by 8 bytes from 59360 bytes (57 kbytes) to 59352 bytes (57 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/nvme/host/nvme.ko.xz by 8 bytes from 32472 bytes (31 kbytes) to 32464 bytes (31 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/scsi/vmw_pvscsi.ko.xz by 8 bytes from 17668 bytes (17 kbytes) to 17660 bytes (17 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/md/dm-verity.ko.xz by 8 bytes from 16360 bytes (15 kbytes) to 16352 bytes (15 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/arch/x86/crypto/sha1-ssse3.ko.xz by 4 bytes from 9964 bytes (9 kbytes) to 9960 bytes (9 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/hid/hid-lg-g15.ko.xz by 4 bytes from 9792 bytes (9 kbytes) to 9788 bytes (9 kbytes)
./usr/lib/modules/a.b.c-flatcar/kernel/drivers/net/ethernet/mellanox/mlx5/core/mlx5_core.ko.xz by 4 bytes from 979124 bytes (956 kbytes) to 979120 bytes (956 kbytes)

Total size difference: decreased by 784 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Base sysext containerd-flatcar changes compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 1 grown files:

./usr/share/SLSA/app-containers_runc-1.4.0-r1.json.zst by 17 bytes from 2980 bytes (2 kbytes) to 2997 bytes (2 kbytes)

All 1 shrunk files:

./usr/share/SLSA/app-containers_containerd-2.2.2.json.zst by 43 bytes from 6872 bytes (6 kbytes) to 6829 bytes (6 kbytes)

Total size difference: decreased by 26 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Base sysext docker-flatcar changes compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 5 grown files:

./usr/share/SLSA/app-containers_docker-28.2.2.json.zst by 29 bytes from 10184 bytes (9 kbytes) to 10213 bytes (9 kbytes)
./usr/share/SLSA/app-containers_docker-cli-29.1.3.json.zst by 24 bytes from 14177 bytes (13 kbytes) to 14201 bytes (13 kbytes)
./usr/share/SLSA/app-containers_docker-buildx-0.21.2.json.zst by 16 bytes from 945 bytes to 961 bytes
./usr/share/SLSA/sys-process_tini-0.19.0-r2.json.zst by 16 bytes from 917 bytes to 933 bytes
./usr/share/SLSA/acct-group_docker-0-r3.json.zst by 16 bytes from 617 bytes to 633 bytes

All 0 shrunk files:


Total size difference: increased by 101 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Extra sysext overlaybd changes compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 2 grown files:

./usr/share/SLSA/sys-fs_overlaybd-1.0.17.json.zst by 18 bytes from 2390 bytes (2 kbytes) to 2408 bytes (2 kbytes)
./usr/share/SLSA/app-containers_accelerated-container-image-1.4.3.json.zst by 16 bytes from 1484 bytes (1 kbytes) to 1500 bytes (1 kbytes)

All 0 shrunk files:


Total size difference: increased by 34 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Extra sysext incus changes compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


Top 10 grown in size files (of 18 files total):

./usr/share/SLSA/sys-fs_lxcfs-6.0.5.json.zst by 24 bytes from 1697 bytes (1 kbytes) to 1721 bytes (1 kbytes)
./usr/share/SLSA/app-containers_lxc-6.0.5.json.zst by 23 bytes from 6805 bytes (6 kbytes) to 6828 bytes (6 kbytes)
./usr/share/SLSA/net-dns_dnsmasq-2.92_p2.json.zst by 23 bytes from 2357 bytes (2 kbytes) to 2380 bytes (2 kbytes)
./usr/share/SLSA/sys-fs_fuse-3.18.2.json.zst by 21 bytes from 1874 bytes (1 kbytes) to 1895 bytes (1 kbytes)
./usr/share/SLSA/dev-util_xdelta-3.0.11-r1.json.zst by 21 bytes from 1177 bytes (1 kbytes) to 1198 bytes (1 kbytes)
./usr/share/SLSA/acct-group_lxc-0-r2.json.zst by 20 bytes from 717 bytes to 737 bytes
./usr/share/SLSA/dev-libs_raft-0.22.1.json.zst by 20 bytes from 1229 bytes (1 kbytes) to 1249 bytes (1 kbytes)
./usr/share/SLSA/sys-fs_squashfs-tools-4.7.5.json.zst by 19 bytes from 1429 bytes (1 kbytes) to 1448 bytes (1 kbytes)
./usr/share/SLSA/acct-group_incus-admin-0.json.zst by 18 bytes from 725 bytes to 743 bytes
./usr/share/SLSA/acct-group_dnsmasq-0-r3.json.zst by 18 bytes from 619 bytes to 637 bytes

All 0 shrunk files:


Total size difference: increased by 338 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Extra sysext nvidia-drivers-535 changes compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 1 grown files:

./usr/share/SLSA/acct-user_nvpd-0-r2.json.zst by 20 bytes from 618 bytes to 638 bytes

All 1 shrunk files:

./usr/share/SLSA/x11-drivers_nvidia-drivers-535.309.01.json.zst by 50 bytes from 12717 bytes (12 kbytes) to 12667 bytes (12 kbytes)

Total size difference: decreased by 30 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Extra sysext nvidia-drivers-535-open changes compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 1 grown files:

./usr/share/SLSA/acct-user_nvpd-0-r2.json.zst by 20 bytes from 618 bytes to 638 bytes

All 1 shrunk files:

./usr/share/SLSA/x11-drivers_nvidia-drivers-535.309.01.json.zst by 57 bytes from 12723 bytes (12 kbytes) to 12666 bytes (12 kbytes)

Total size difference: decreased by 37 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Extra sysext nvidia-drivers-550 changes compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 2 grown files:

./usr/share/SLSA/acct-user_nvpd-0-r2.json.zst by 20 bytes from 618 bytes to 638 bytes
./usr/share/SLSA/x11-drivers_old-nvidia-drivers-550.163.01-r1.json.zst by 17 bytes from 12285 bytes (11 kbytes) to 12302 bytes (12 kbytes)

All 0 shrunk files:


Total size difference: increased by 37 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Extra sysext nvidia-drivers-550-open changes compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 2 grown files:

./usr/share/SLSA/x11-drivers_old-nvidia-drivers-550.163.01-r1.json.zst by 22 bytes from 12281 bytes (11 kbytes) to 12303 bytes (12 kbytes)
./usr/share/SLSA/acct-user_nvpd-0-r2.json.zst by 20 bytes from 618 bytes to 638 bytes

All 0 shrunk files:


Total size difference: increased by 42 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Extra sysext nvidia-drivers-570 changes compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 2 grown files:

./usr/share/SLSA/acct-user_nvpd-0-r2.json.zst by 20 bytes from 618 bytes to 638 bytes
./usr/share/SLSA/x11-drivers_old-nvidia-drivers-570.211.01.json.zst by 17 bytes from 12832 bytes (12 kbytes) to 12849 bytes (12 kbytes)

All 0 shrunk files:


Total size difference: increased by 37 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Extra sysext nvidia-drivers-570-open changes compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 2 grown files:

./usr/share/SLSA/acct-user_nvpd-0-r2.json.zst by 20 bytes from 618 bytes to 638 bytes
./usr/share/SLSA/x11-drivers_old-nvidia-drivers-570.211.01.json.zst by 17 bytes from 12831 bytes (12 kbytes) to 12848 bytes (12 kbytes)

All 0 shrunk files:


Total size difference: increased by 37 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Extra sysext podman changes compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


Top 10 grown in size files (of 16 files total):

./usr/share/SLSA/app-containers_containers-storage-1.59.1.json.zst by 23 bytes from 820 bytes to 843 bytes
./usr/share/SLSA/sys-fs_fuse-3.18.2.json.zst by 21 bytes from 1874 bytes (1 kbytes) to 1895 bytes (1 kbytes)
./usr/share/SLSA/app-containers_containers-shortnames-2025.03.19.json.zst by 20 bytes from 740 bytes to 760 bytes
./usr/share/SLSA/app-crypt_gpgme-2.0.1-r1.json.zst by 20 bytes from 2370 bytes (2 kbytes) to 2390 bytes (2 kbytes)
./usr/share/SLSA/app-containers_conmon-2.1.13.json.zst by 19 bytes from 912 bytes to 931 bytes
./usr/share/SLSA/app-containers_catatonit-0.2.1.json.zst by 19 bytes from 828 bytes to 847 bytes
./usr/share/SLSA/app-containers_containers-image-5.36.2.json.zst by 18 bytes from 1722 bytes (1 kbytes) to 1740 bytes (1 kbytes)
./usr/share/SLSA/app-containers_crun-1.21.json.zst by 18 bytes from 1100 bytes (1 kbytes) to 1118 bytes (1 kbytes)
./usr/share/SLSA/acct-group_cuse-0.json.zst by 17 bytes from 613 bytes to 630 bytes
./usr/share/SLSA/dev-libs_yajl-2.1.0-r6.json.zst by 17 bytes from 1824 bytes (1 kbytes) to 1841 bytes (1 kbytes)

All 1 shrunk files:

./usr/share/SLSA/app-containers_podman-5.7.1.json.zst by 30 bytes from 19689 bytes (19 kbytes) to 19659 bytes (19 kbytes)

Total size difference: increased by 250 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Extra sysext python changes compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 0 grown files:


All 0 shrunk files:


Total size difference: increased by 0 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Extra sysext zfs changes compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 2 grown files:

./usr/share/SLSA/sys-fs_zfs-2.3.6.json.zst by 29 bytes from 34964 bytes (34 kbytes) to 34993 bytes (34 kbytes)
./usr/share/SLSA/sys-fs_zfs-kmod-2.3.6.json.zst by 24 bytes from 21392 bytes (20 kbytes) to 21416 bytes (20 kbytes)

All 0 shrunk files:


Total size difference: increased by 53 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM akamai compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 1 grown files:

./usr/share/SLSA/coreos-base_oem-akamai-0.json.zst by 16 bytes from 598 bytes to 614 bytes

All 0 shrunk files:


Total size difference: increased by 16 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM ami compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 3 grown files:

./usr/share/SLSA/app-emulation_amazon-ssm-agent-3.3.2299.0-r1.json.zst by 20 bytes from 1602 bytes (1 kbytes) to 1622 bytes (1 kbytes)
./usr/share/SLSA/coreos-base_flatcar-eks-0.0.1-r4.json.zst by 19 bytes from 1421 bytes (1 kbytes) to 1440 bytes (1 kbytes)
./usr/share/SLSA/coreos-base_oem-ami-3.3.2299.0.json.zst by 17 bytes from 806 bytes to 823 bytes

All 0 shrunk files:


Total size difference: increased by 56 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM azure compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


Top 10 grown in size files (of 15 files total):

./usr/share/SLSA/dev-lang_python-3.12.13_p1.json.zst by 31 bytes from 165451 bytes (161 kbytes) to 165482 bytes (161 kbytes)
./usr/share/SLSA/dev-python_distro-1.9.0.json.zst by 26 bytes from 1967 bytes (1 kbytes) to 1993 bytes (1 kbytes)
./usr/share/SLSA/coreos-base_oem-azure-2.12.0.4-r2.json.zst by 21 bytes from 1077 bytes (1 kbytes) to 1098 bytes (1 kbytes)
./usr/share/SLSA/dev-python_ensurepip-pip-26.0.1.json.zst by 19 bytes from 788 bytes to 807 bytes
./usr/share/SLSA/app-misc_mime-types-2.1.54.json.zst by 19 bytes from 730 bytes to 749 bytes
./usr/share/SLSA/sys-fs_inotify-tools-4.25.9.0.json.zst by 19 bytes from 1979 bytes (1 kbytes) to 1998 bytes (1 kbytes)
./usr/share/SLSA/app-crypt_libb2-0.98.1-r3.json.zst by 19 bytes from 1093 bytes (1 kbytes) to 1112 bytes (1 kbytes)
./usr/share/SLSA/dev-lang_python-exec-2.4.10.json.zst by 19 bytes from 1015 bytes to 1034 bytes (1 kbytes)
./usr/share/SLSA/dev-lang_python-exec-conf-2.4.6.json.zst by 18 bytes from 739 bytes to 757 bytes
./usr/share/SLSA/net-misc_chrony-4.8-r1.json.zst by 17 bytes from 2523 bytes (2 kbytes) to 2540 bytes (2 kbytes)

All 1 shrunk files:

./usr/share/SLSA/dev-python_urllib3-2.7.0.json.zst by 75 bytes from 9234 bytes (9 kbytes) to 9159 bytes (8 kbytes)

Total size difference: increased by 196 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM cloudsigma compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 1 grown files:

./usr/share/SLSA/coreos-base_oem-cloudsigma-1.0.0.json.zst by 19 bytes from 662 bytes to 681 bytes

All 0 shrunk files:


Total size difference: increased by 19 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM cloudstack compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 1 grown files:

./usr/share/SLSA/coreos-base_oem-cloudstack-1.0.0.json.zst by 21 bytes from 1156 bytes (1 kbytes) to 1177 bytes (1 kbytes)

All 0 shrunk files:


Total size difference: increased by 21 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM digitalocean compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 1 grown files:

./usr/share/SLSA/coreos-base_oem-digitalocean-0.1.1-r2.json.zst by 16 bytes from 607 bytes to 623 bytes

All 0 shrunk files:


Total size difference: increased by 16 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM exoscale compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 1 grown files:

./usr/share/SLSA/coreos-base_oem-exoscale-1.0.0.json.zst by 16 bytes from 1157 bytes (1 kbytes) to 1173 bytes (1 kbytes)

All 0 shrunk files:


Total size difference: increased by 16 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM gce compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================

diff --git a/tmp/4722.0.0-dAD0RV b/tmp/.-YCcVRf
index 1d6b143f10..7901f916f4 100644
--- a/tmp/4722.0.0-dAD0RV
+++ b/tmp/.-YCcVRf
@@ -310,6 +310,8 @@
 /usr/lib/debug/.build-id/24
 /usr/lib/debug/.build-id/24/0d8007c346b68f06a8c9cc4ce06c8506176399
 /usr/lib/debug/.build-id/24/0d8007c346b68f06a8c9cc4ce06c8506176399.debug
+/usr/lib/debug/.build-id/24/761d541b88fb7b2e04907ff01ad6f0fceb23ce
+/usr/lib/debug/.build-id/24/761d541b88fb7b2e04907ff01ad6f0fceb23ce.debug
 /usr/lib/debug/.build-id/26
 /usr/lib/debug/.build-id/26/b8dc4d90952bb833dbc61c4425f3cdeaf930b3
 /usr/lib/debug/.build-id/26/b8dc4d90952bb833dbc61c4425f3cdeaf930b3.debug
@@ -352,9 +354,6 @@
 /usr/lib/debug/.build-id/43/57632514713c8a45b8713f90107e5fb52f1737.debug
 /usr/lib/debug/.build-id/43/ab380f885cb179846227a9d357b28448f30f8b
 /usr/lib/debug/.build-id/43/ab380f885cb179846227a9d357b28448f30f8b.debug
-/usr/lib/debug/.build-id/45
-/usr/lib/debug/.build-id/45/4faa9f57299a36d7857d1dff90373a9a06b5b2
-/usr/lib/debug/.build-id/45/4faa9f57299a36d7857d1dff90373a9a06b5b2.debug
 /usr/lib/debug/.build-id/4b
 /usr/lib/debug/.build-id/4b/43cb03a3706c3bbfb00a81f33da71f2dd63ab6
 /usr/lib/debug/.build-id/4b/43cb03a3706c3bbfb00a81f33da71f2dd63ab6.debug

Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


Top 10 grown in size files (of 14 files total):

./usr/share/SLSA/dev-lang_python-3.12.13_p1.json.zst by 31 bytes from 165451 bytes (161 kbytes) to 165482 bytes (161 kbytes)
./usr/share/SLSA/dev-python_distro-1.9.0.json.zst by 26 bytes from 1967 bytes (1 kbytes) to 1993 bytes (1 kbytes)
./usr/share/SLSA/dev-python_boto-2.49.0-r8.json.zst by 20 bytes from 80270 bytes (78 kbytes) to 80290 bytes (78 kbytes)
./usr/share/SLSA/dev-python_six-1.17.0.json.zst by 20 bytes from 1403 bytes (1 kbytes) to 1423 bytes (1 kbytes)
./usr/share/SLSA/dev-python_ensurepip-pip-26.0.1.json.zst by 19 bytes from 788 bytes to 807 bytes
./usr/share/SLSA/app-misc_mime-types-2.1.54.json.zst by 19 bytes from 730 bytes to 749 bytes
./usr/share/SLSA/app-crypt_libb2-0.98.1-r3.json.zst by 19 bytes from 1093 bytes (1 kbytes) to 1112 bytes (1 kbytes)
./usr/share/SLSA/dev-lang_python-exec-2.4.10.json.zst by 19 bytes from 1015 bytes to 1034 bytes (1 kbytes)
./usr/share/SLSA/dev-lang_python-exec-conf-2.4.6.json.zst by 18 bytes from 739 bytes to 757 bytes
./usr/share/SLSA/dev-python_gentoo-common-1.json.zst by 16 bytes from 635 bytes to 651 bytes

All 0 shrunk files:


Total size difference: increased by 261 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM hetzner compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 1 grown files:

./usr/share/SLSA/coreos-base_oem-hetzner-0.json.zst by 15 bytes from 600 bytes to 615 bytes

All 0 shrunk files:


Total size difference: increased by 15 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM hyperv compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 2 grown files:

./usr/share/SLSA/app-emulation_hv-daemons-6.12.93.json.zst by 17 bytes from 1164 bytes (1 kbytes) to 1181 bytes (1 kbytes)
./usr/share/SLSA/coreos-base_oem-hyperv-0.2.0.json.zst by 15 bytes from 602 bytes to 617 bytes

All 0 shrunk files:


Total size difference: increased by 32 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM kubevirt compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 1 grown files:

./usr/share/SLSA/coreos-base_oem-kubevirt-0.json.zst by 15 bytes from 601 bytes to 616 bytes

All 0 shrunk files:


Total size difference: increased by 15 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM nutanix compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 1 grown files:

./usr/share/SLSA/coreos-base_oem-nutanix-0.0.1.json.zst by 18 bytes from 601 bytes to 619 bytes

All 0 shrunk files:


Total size difference: increased by 18 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM openstack compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 1 grown files:

./usr/share/SLSA/coreos-base_oem-openstack-0.json.zst by 16 bytes from 602 bytes to 618 bytes

All 0 shrunk files:


Total size difference: increased by 16 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM oraclecloud compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 1 grown files:

./usr/share/SLSA/coreos-base_oem-oraclecloud-0.json.zst by 14 bytes from 604 bytes to 618 bytes

All 0 shrunk files:


Total size difference: increased by 14 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM proxmoxve compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 1 grown files:

./usr/share/SLSA/coreos-base_oem-proxmoxve-0.json.zst by 19 bytes from 601 bytes to 620 bytes

All 0 shrunk files:


Total size difference: increased by 19 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM qemu compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 1 grown files:

./usr/share/SLSA/coreos-base_oem-qemu-0.0.2.json.zst by 18 bytes from 601 bytes to 619 bytes

All 0 shrunk files:


Total size difference: increased by 18 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM scaleway compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 1 grown files:

./usr/share/SLSA/coreos-base_oem-scaleway-0.json.zst by 16 bytes from 598 bytes to 614 bytes

All 0 shrunk files:


Total size difference: increased by 16 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM stackit compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 2 grown files:

./usr/share/SLSA/coreos-base_oem-stackit-0.json.zst by 18 bytes from 1051 bytes (1 kbytes) to 1069 bytes (1 kbytes)
./usr/share/SLSA/net-misc_chrony-4.8-r1.json.zst by 17 bytes from 2523 bytes (2 kbytes) to 2540 bytes (2 kbytes)

All 0 shrunk files:


Total size difference: increased by 35 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM vagrant compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 1 grown files:

./usr/share/SLSA/coreos-base_oem-vagrant-1.0.0.json.zst by 19 bytes from 799 bytes to 818 bytes

All 0 shrunk files:


Total size difference: increased by 19 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM virtualbox compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 1 grown files:

./usr/share/SLSA/coreos-base_oem-virtualbox-1.0.0.json.zst by 14 bytes from 604 bytes to 618 bytes

All 0 shrunk files:


Total size difference: increased by 14 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Sysext changes for OEM vmware compared to alpha 4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


Package updates, compared to alpha 4722.0.0:
============================================


Image file changes, compared to alpha 4722.0.0:
===============================================


Image file size changes, compared to alpha 4722.0.0:
====================================================

Downloading file listings
Generating file listing diffs
Filling cache key caches
Generating new entries
Generating deleted entries
Generating changed entries
Generating unchanged entries
Filling hardlink cache
Filtering new entries
Filtering deleted entries
Filtering changed entries

All 0 newly added files:


All 0 just deleted files:


All 10 grown files:

./usr/share/SLSA/app-emulation_open-vm-tools-13.0.10.json.zst by 58 bytes from 8203 bytes (8 kbytes) to 8261 bytes (8 kbytes)
./usr/share/SLSA/dev-libs_xmlsec-1.3.10-r1.json.zst by 23 bytes from 4469 bytes (4 kbytes) to 4492 bytes (4 kbytes)
./usr/share/SLSA/dev-libs_libmspack-1.11.json.zst by 23 bytes from 1275 bytes (1 kbytes) to 1298 bytes (1 kbytes)
./usr/share/SLSA/dev-libs_libxslt-1.1.45.json.zst by 21 bytes from 6550 bytes (6 kbytes) to 6571 bytes (6 kbytes)
./usr/share/SLSA/sys-fs_fuse-3.18.2.json.zst by 21 bytes from 1874 bytes (1 kbytes) to 1895 bytes (1 kbytes)
./usr/share/SLSA/dev-libs_libdnet-1.18.2.json.zst by 19 bytes from 2676 bytes (2 kbytes) to 2695 bytes (2 kbytes)
./usr/share/SLSA/coreos-base_oem-vmware-13.0.10.json.zst by 18 bytes from 885 bytes to 903 bytes
./usr/share/SLSA/dev-libs_libltdl-2.5.4.json.zst by 18 bytes from 1252 bytes (1 kbytes) to 1270 bytes (1 kbytes)
./usr/share/SLSA/acct-group_cuse-0.json.zst by 17 bytes from 613 bytes to 630 bytes
./usr/share/SLSA/sys-fs_fuse-common-3.10.4-r3.json.zst by 16 bytes from 1081 bytes (1 kbytes) to 1097 bytes (1 kbytes)

All 0 shrunk files:


Total size difference: increased by 234 bytes

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! Changelog against alpha-4722.0.0 !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

_Changes since **Alpha 4722.0.0**_

#### Security fixes:


#### Bug fixes:


#### Changes:


#### Updates:

- Linux Firmware ([20260519](https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tag/?h=20260519))
- ca-certificates ([3.125](https://firefox-source-docs.mozilla.org/security/nss/releases/nss_3_125.html))

@github-actions

Copy link
Copy Markdown

Test report for 4734.0.0+nightly-20260617-2100 / amd64

Platforms tested : qemu_uefi-amd64

🟢 ok bpf.ig; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.basic; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.cloudinit.basic; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.cloudinit.multipart-mime; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.cloudinit.script; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.disk.raid0.data; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.disk.raid0.root; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.disk.raid1.data; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.disk.raid1.root; Succeeded: qemu_uefi-amd64 (3); Failed: qemu_uefi-amd64 (1, 2)

                Diagnostic output for qemu_uefi-amd64, run 2
    L1: " Error: _raid.go:223: machine __fe8f8576-f38d-40cf-b18a-05107228244d__ failed to start: ssh journalctl failed: time limit exceeded: dial tcp 10.0.0.2:22: connect: connection refused_"
    L2: " "
                Diagnostic output for qemu_uefi-amd64, run 1
    L1: " Error: _raid.go:223: machine __1018df01-9df5-4dec-b4ac-c9ba8dcc861b__ failed to start: ssh journalctl failed: time limit exceeded: dial tcp 10.0.0.12:22: connect: connection refused_"
    L2: " "

🟢 ok cl.etcd-member.discovery; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.etcd-member.etcdctlv3; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.etcd-member.v2-backup-restore; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.filesystem; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.flannel.udp; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.flannel.vxlan; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.ignition.instantiated.enable-unit; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.ignition.kargs; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.ignition.luks; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.ignition.oem.indirect; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.ignition.oem.indirect.new; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.ignition.oem.regular; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.ignition.oem.regular.new; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.ignition.oem.reuse; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.ignition.oem.wipe; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.ignition.partition_on_boot_disk; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.ignition.symlink; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.ignition.translation; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.ignition.v1.btrfsroot; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.ignition.v1.ext4root; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.ignition.v1.groups; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.ignition.v1.once; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.ignition.v1.sethostname; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.ignition.v1.users; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.ignition.v1.xfsroot; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.ignition.v2.btrfsroot; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.ignition.v2.ext4root; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.ignition.v2.users; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.ignition.v2.xfsroot; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.ignition.v2_1.ext4checkexisting; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.ignition.v2_1.swap; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.ignition.v2_1.vfat; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.install.cloudinit; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.internet; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.locksmith.cluster; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.network.initramfs.second-boot; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.network.iptables; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.network.listeners; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.network.nftables; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.network.wireguard; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.omaha.ping; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.osreset.ignition-rerun; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.overlay.cleanup; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.swap_activation; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.sysext.boot; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.sysext.fallbackdownload # SKIP; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.tang.nonroot; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.tang.root; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.toolbox.dnf-install; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.tpm.eventlog; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.tpm.nonroot; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.tpm.root; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.tpm.root-cryptenroll; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.tpm.root-cryptenroll-pcr-noupdate; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.tpm.root-cryptenroll-pcr-withupdate; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.update.badverity; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.update.reboot; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.users.shells; Succeeded: qemu_uefi-amd64 (1)

🟢 ok cl.verity; Succeeded: qemu_uefi-amd64 (1)

🟢 ok confext.skiprefresh; Succeeded: qemu_uefi-amd64 (1)

🟢 ok coreos.auth.verify; Succeeded: qemu_uefi-amd64 (1)

🟢 ok coreos.ignition.groups; Succeeded: qemu_uefi-amd64 (1)

🟢 ok coreos.ignition.once; Succeeded: qemu_uefi-amd64 (1)

🟢 ok coreos.ignition.resource.local; Succeeded: qemu_uefi-amd64 (1)

🟢 ok coreos.ignition.resource.remote; Succeeded: qemu_uefi-amd64 (1)

🟢 ok coreos.ignition.resource.s3.versioned; Succeeded: qemu_uefi-amd64 (1)

🟢 ok coreos.ignition.security.tls; Succeeded: qemu_uefi-amd64 (1)

🟢 ok coreos.ignition.sethostname; Succeeded: qemu_uefi-amd64 (1)

🟢 ok coreos.ignition.systemd.enable-service; Succeeded: qemu_uefi-amd64 (1)

🟢 ok coreos.locksmith.reboot; Succeeded: qemu_uefi-amd64 (1)

🟢 ok coreos.locksmith.tls; Succeeded: qemu_uefi-amd64 (1)

🟢 ok coreos.selinux.boolean; Succeeded: qemu_uefi-amd64 (1)

🟢 ok coreos.selinux.enforce; Succeeded: qemu_uefi-amd64 (1)

🟢 ok coreos.tls.fetch-urls; Succeeded: qemu_uefi-amd64 (1)

🟢 ok coreos.update.badusr; Succeeded: qemu_uefi-amd64 (1)

❌ not ok devcontainer.docker; Failed: qemu_uefi-amd64 (1, 2, 3, 4, 5)

                Diagnostic output for qemu_uefi-amd64, run 5
    L1: " Error: _cluster.go:125: + set -euo pipefail"
    L2: "cluster.go:125: + source /home/core/download-library.sh"
    L3: "cluster.go:125: + download_dev_container_image flatcar_developer_container.bin"
    L4: "cluster.go:125: + local output_bin=flatcar_developer_container.bin"
    L5: "cluster.go:125: + shift"
    L6: "cluster.go:125: + local arch version image_url bzip2cat"
    L7: "cluster.go:125: ++ source /usr/share/flatcar/release"
    L8: "cluster.go:125: +++ FLATCAR_RELEASE_VERSION=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L9: "cluster.go:125: +++ FLATCAR_RELEASE_BOARD=amd64-usr"
    L10: "cluster.go:125: +++ FLATCAR_RELEASE_APPID=_{e96281a6-d1af-4bde-9a0a-97b76e56dc57}_"
    L11: "cluster.go:125: ++ echo amd64"
    L12: "cluster.go:125: + arch=amd64"
    L13: "cluster.go:125: ++ source /usr/share/flatcar/release"
    L14: "cluster.go:125: +++ FLATCAR_RELEASE_VERSION=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L15: "cluster.go:125: +++ FLATCAR_RELEASE_BOARD=amd64-usr"
    L16: "cluster.go:125: +++ FLATCAR_RELEASE_APPID=_{e96281a6-d1af-4bde-9a0a-97b76e56dc57}_"
    L17: "cluster.go:125: ++ echo 4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L18: "cluster.go:125: + version=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L19: "cluster.go:125: ++ process_template http://10.0.31.74:12345/flatcar_developer_container.bin.bz2 amd64 4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L20: "cluster.go:125: ++ local template=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L21: "cluster.go:125: ++ shift"
    L22: "cluster.go:125: ++ local arch=amd64"
    L23: "cluster.go:125: ++ shift"
    L24: "cluster.go:125: ++ local version=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L25: "cluster.go:125: ++ shift"
    L26: "cluster.go:125: ++ local result=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L27: "cluster.go:125: ++ result=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L28: "cluster.go:125: ++ result=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L29: "cluster.go:125: ++ echo http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L30: "cluster.go:125: + image_url=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L31: "cluster.go:125: + echo _Fetching developer container from http://10.0.31.74:12345/flatcar_developer_container.bin.bz2_"
    L32: "cluster.go:125: + curl --fail --silent --show-error --location --retry-delay 1 --retry 60 --retry-connrefused --retry-max-time 60 --connect-timeout 20 --remote-name http://10.0.31.74:12345/flatcar_dev?eloper_container.bin.bz2"
    L33: "cluster.go:125: curl: (7) Failed to connect to 10.0.31.74 port 12345 after 3077 ms: Could not connect to server"
    L34: "devcontainer.go:236: main script failed: Process exited with status 7_"
    L35: " "
                Diagnostic output for qemu_uefi-amd64, run 4
    L1: " Error: _cluster.go:125: + set -euo pipefail"
    L2: "cluster.go:125: + source /home/core/download-library.sh"
    L3: "cluster.go:125: + download_dev_container_image flatcar_developer_container.bin"
    L4: "cluster.go:125: + local output_bin=flatcar_developer_container.bin"
    L5: "cluster.go:125: + shift"
    L6: "cluster.go:125: + local arch version image_url bzip2cat"
    L7: "cluster.go:125: ++ source /usr/share/flatcar/release"
    L8: "cluster.go:125: +++ FLATCAR_RELEASE_VERSION=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L9: "cluster.go:125: +++ FLATCAR_RELEASE_BOARD=amd64-usr"
    L10: "cluster.go:125: +++ FLATCAR_RELEASE_APPID=_{e96281a6-d1af-4bde-9a0a-97b76e56dc57}_"
    L11: "cluster.go:125: ++ echo amd64"
    L12: "cluster.go:125: + arch=amd64"
    L13: "cluster.go:125: ++ source /usr/share/flatcar/release"
    L14: "cluster.go:125: +++ FLATCAR_RELEASE_VERSION=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L15: "cluster.go:125: +++ FLATCAR_RELEASE_BOARD=amd64-usr"
    L16: "cluster.go:125: +++ FLATCAR_RELEASE_APPID=_{e96281a6-d1af-4bde-9a0a-97b76e56dc57}_"
    L17: "cluster.go:125: ++ echo 4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L18: "cluster.go:125: + version=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L19: "cluster.go:125: ++ process_template http://10.0.31.74:12345/flatcar_developer_container.bin.bz2 amd64 4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L20: "cluster.go:125: ++ local template=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L21: "cluster.go:125: ++ shift"
    L22: "cluster.go:125: ++ local arch=amd64"
    L23: "cluster.go:125: ++ shift"
    L24: "cluster.go:125: ++ local version=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L25: "cluster.go:125: ++ shift"
    L26: "cluster.go:125: ++ local result=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L27: "cluster.go:125: ++ result=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L28: "cluster.go:125: ++ result=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L29: "cluster.go:125: ++ echo http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L30: "cluster.go:125: + image_url=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L31: "cluster.go:125: + echo _Fetching developer container from http://10.0.31.74:12345/flatcar_developer_container.bin.bz2_"
    L32: "cluster.go:125: + curl --fail --silent --show-error --location --retry-delay 1 --retry 60 --retry-connrefused --retry-max-time 60 --connect-timeout 20 --remote-name http://10.0.31.74:12345/flatcar_dev?eloper_container.bin.bz2"
    L33: "cluster.go:125: curl: (7) Failed to connect to 10.0.31.74 port 12345 after 3058 ms: Could not connect to server"
    L34: "devcontainer.go:236: main script failed: Process exited with status 7_"
    L35: " "
                Diagnostic output for qemu_uefi-amd64, run 3
    L1: " Error: _cluster.go:125: + set -euo pipefail"
    L2: "cluster.go:125: + source /home/core/download-library.sh"
    L3: "cluster.go:125: + download_dev_container_image flatcar_developer_container.bin"
    L4: "cluster.go:125: + local output_bin=flatcar_developer_container.bin"
    L5: "cluster.go:125: + shift"
    L6: "cluster.go:125: + local arch version image_url bzip2cat"
    L7: "cluster.go:125: ++ source /usr/share/flatcar/release"
    L8: "cluster.go:125: +++ FLATCAR_RELEASE_VERSION=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L9: "cluster.go:125: +++ FLATCAR_RELEASE_BOARD=amd64-usr"
    L10: "cluster.go:125: +++ FLATCAR_RELEASE_APPID=_{e96281a6-d1af-4bde-9a0a-97b76e56dc57}_"
    L11: "cluster.go:125: ++ echo amd64"
    L12: "cluster.go:125: + arch=amd64"
    L13: "cluster.go:125: ++ source /usr/share/flatcar/release"
    L14: "cluster.go:125: +++ FLATCAR_RELEASE_VERSION=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L15: "cluster.go:125: +++ FLATCAR_RELEASE_BOARD=amd64-usr"
    L16: "cluster.go:125: +++ FLATCAR_RELEASE_APPID=_{e96281a6-d1af-4bde-9a0a-97b76e56dc57}_"
    L17: "cluster.go:125: ++ echo 4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L18: "cluster.go:125: + version=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L19: "cluster.go:125: ++ process_template http://10.0.31.74:12345/flatcar_developer_container.bin.bz2 amd64 4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L20: "cluster.go:125: ++ local template=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L21: "cluster.go:125: ++ shift"
    L22: "cluster.go:125: ++ local arch=amd64"
    L23: "cluster.go:125: ++ shift"
    L24: "cluster.go:125: ++ local version=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L25: "cluster.go:125: ++ shift"
    L26: "cluster.go:125: ++ local result=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L27: "cluster.go:125: ++ result=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L28: "cluster.go:125: ++ result=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L29: "cluster.go:125: ++ echo http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L30: "cluster.go:125: + image_url=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L31: "cluster.go:125: + echo _Fetching developer container from http://10.0.31.74:12345/flatcar_developer_container.bin.bz2_"
    L32: "cluster.go:125: + curl --fail --silent --show-error --location --retry-delay 1 --retry 60 --retry-connrefused --retry-max-time 60 --connect-timeout 20 --remote-name http://10.0.31.74:12345/flatcar_dev?eloper_container.bin.bz2"
    L33: "cluster.go:125: curl: (7) Failed to connect to 10.0.31.74 port 12345 after 3087 ms: Could not connect to server"
    L34: "devcontainer.go:236: main script failed: Process exited with status 7_"
    L35: " "
                Diagnostic output for qemu_uefi-amd64, run 2
    L1: " Error: _cluster.go:125: + set -euo pipefail"
    L2: "cluster.go:125: + source /home/core/download-library.sh"
    L3: "cluster.go:125: + download_dev_container_image flatcar_developer_container.bin"
    L4: "cluster.go:125: + local output_bin=flatcar_developer_container.bin"
    L5: "cluster.go:125: + shift"
    L6: "cluster.go:125: + local arch version image_url bzip2cat"
    L7: "cluster.go:125: ++ source /usr/share/flatcar/release"
    L8: "cluster.go:125: +++ FLATCAR_RELEASE_VERSION=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L9: "cluster.go:125: +++ FLATCAR_RELEASE_BOARD=amd64-usr"
    L10: "cluster.go:125: +++ FLATCAR_RELEASE_APPID=_{e96281a6-d1af-4bde-9a0a-97b76e56dc57}_"
    L11: "cluster.go:125: ++ echo amd64"
    L12: "cluster.go:125: + arch=amd64"
    L13: "cluster.go:125: ++ source /usr/share/flatcar/release"
    L14: "cluster.go:125: +++ FLATCAR_RELEASE_VERSION=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L15: "cluster.go:125: +++ FLATCAR_RELEASE_BOARD=amd64-usr"
    L16: "cluster.go:125: +++ FLATCAR_RELEASE_APPID=_{e96281a6-d1af-4bde-9a0a-97b76e56dc57}_"
    L17: "cluster.go:125: ++ echo 4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L18: "cluster.go:125: + version=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L19: "cluster.go:125: ++ process_template http://10.0.31.74:12345/flatcar_developer_container.bin.bz2 amd64 4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L20: "cluster.go:125: ++ local template=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L21: "cluster.go:125: ++ shift"
    L22: "cluster.go:125: ++ local arch=amd64"
    L23: "cluster.go:125: ++ shift"
    L24: "cluster.go:125: ++ local version=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L25: "cluster.go:125: ++ shift"
    L26: "cluster.go:125: ++ local result=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L27: "cluster.go:125: ++ result=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L28: "cluster.go:125: ++ result=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L29: "cluster.go:125: ++ echo http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L30: "cluster.go:125: + image_url=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L31: "cluster.go:125: + echo _Fetching developer container from http://10.0.31.74:12345/flatcar_developer_container.bin.bz2_"
    L32: "cluster.go:125: + curl --fail --silent --show-error --location --retry-delay 1 --retry 60 --retry-connrefused --retry-max-time 60 --connect-timeout 20 --remote-name http://10.0.31.74:12345/flatcar_dev?eloper_container.bin.bz2"
    L33: "cluster.go:125: curl: (7) Failed to connect to 10.0.31.74 port 12345 after 3108 ms: Could not connect to server"
    L34: "devcontainer.go:236: main script failed: Process exited with status 7_"
    L35: " "
                Diagnostic output for qemu_uefi-amd64, run 1
    L1: " Error: _cluster.go:125: + set -euo pipefail"
    L2: "cluster.go:125: + source /home/core/download-library.sh"
    L3: "cluster.go:125: + download_dev_container_image flatcar_developer_container.bin"
    L4: "cluster.go:125: + local output_bin=flatcar_developer_container.bin"
    L5: "cluster.go:125: + shift"
    L6: "cluster.go:125: + local arch version image_url bzip2cat"
    L7: "cluster.go:125: ++ source /usr/share/flatcar/release"
    L8: "cluster.go:125: +++ FLATCAR_RELEASE_VERSION=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L9: "cluster.go:125: +++ FLATCAR_RELEASE_BOARD=amd64-usr"
    L10: "cluster.go:125: +++ FLATCAR_RELEASE_APPID=_{e96281a6-d1af-4bde-9a0a-97b76e56dc57}_"
    L11: "cluster.go:125: ++ echo amd64"
    L12: "cluster.go:125: + arch=amd64"
    L13: "cluster.go:125: ++ source /usr/share/flatcar/release"
    L14: "cluster.go:125: +++ FLATCAR_RELEASE_VERSION=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L15: "cluster.go:125: +++ FLATCAR_RELEASE_BOARD=amd64-usr"
    L16: "cluster.go:125: +++ FLATCAR_RELEASE_APPID=_{e96281a6-d1af-4bde-9a0a-97b76e56dc57}_"
    L17: "cluster.go:125: ++ echo 4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L18: "cluster.go:125: + version=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L19: "cluster.go:125: ++ process_template http://10.0.31.74:12345/flatcar_developer_container.bin.bz2 amd64 4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L20: "cluster.go:125: ++ local template=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L21: "cluster.go:125: ++ shift"
    L22: "cluster.go:125: ++ local arch=amd64"
    L23: "cluster.go:125: ++ shift"
    L24: "cluster.go:125: ++ local version=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L25: "cluster.go:125: ++ shift"
    L26: "cluster.go:125: ++ local result=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L27: "cluster.go:125: ++ result=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L28: "cluster.go:125: ++ result=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L29: "cluster.go:125: ++ echo http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L30: "cluster.go:125: + image_url=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L31: "cluster.go:125: + echo _Fetching developer container from http://10.0.31.74:12345/flatcar_developer_container.bin.bz2_"
    L32: "cluster.go:125: + curl --fail --silent --show-error --location --retry-delay 1 --retry 60 --retry-connrefused --retry-max-time 60 --connect-timeout 20 --remote-name http://10.0.31.74:12345/flatcar_dev?eloper_container.bin.bz2"
    L33: "cluster.go:125: curl: (7) Failed to connect to 10.0.31.74 port 12345 after 3065 ms: Could not connect to server"
    L34: "devcontainer.go:236: main script failed: Process exited with status 7_"
    L35: " "

❌ not ok devcontainer.systemd-nspawn; Failed: qemu_uefi-amd64 (1, 2, 3, 4, 5)

                Diagnostic output for qemu_uefi-amd64, run 5
    L1: " Error: _cluster.go:125: + set -euo pipefail"
    L2: "cluster.go:125: + source /home/core/download-library.sh"
    L3: "cluster.go:125: + download_dev_container_image flatcar_developer_container.bin"
    L4: "cluster.go:125: + local output_bin=flatcar_developer_container.bin"
    L5: "cluster.go:125: + shift"
    L6: "cluster.go:125: + local arch version image_url bzip2cat"
    L7: "cluster.go:125: ++ source /usr/share/flatcar/release"
    L8: "cluster.go:125: +++ FLATCAR_RELEASE_VERSION=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L9: "cluster.go:125: +++ FLATCAR_RELEASE_BOARD=amd64-usr"
    L10: "cluster.go:125: +++ FLATCAR_RELEASE_APPID=_{e96281a6-d1af-4bde-9a0a-97b76e56dc57}_"
    L11: "cluster.go:125: ++ echo amd64"
    L12: "cluster.go:125: + arch=amd64"
    L13: "cluster.go:125: ++ source /usr/share/flatcar/release"
    L14: "cluster.go:125: +++ FLATCAR_RELEASE_VERSION=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L15: "cluster.go:125: +++ FLATCAR_RELEASE_BOARD=amd64-usr"
    L16: "cluster.go:125: +++ FLATCAR_RELEASE_APPID=_{e96281a6-d1af-4bde-9a0a-97b76e56dc57}_"
    L17: "cluster.go:125: ++ echo 4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L18: "cluster.go:125: + version=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L19: "cluster.go:125: ++ process_template http://10.0.31.74:12345/flatcar_developer_container.bin.bz2 amd64 4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L20: "cluster.go:125: ++ local template=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L21: "cluster.go:125: ++ shift"
    L22: "cluster.go:125: ++ local arch=amd64"
    L23: "cluster.go:125: ++ shift"
    L24: "cluster.go:125: ++ local version=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L25: "cluster.go:125: ++ shift"
    L26: "cluster.go:125: ++ local result=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L27: "cluster.go:125: ++ result=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L28: "cluster.go:125: ++ result=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L29: "cluster.go:125: ++ echo http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L30: "cluster.go:125: + image_url=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L31: "cluster.go:125: + echo _Fetching developer container from http://10.0.31.74:12345/flatcar_developer_container.bin.bz2_"
    L32: "cluster.go:125: + curl --fail --silent --show-error --location --retry-delay 1 --retry 60 --retry-connrefused --retry-max-time 60 --connect-timeout 20 --remote-name http://10.0.31.74:12345/flatcar_dev?eloper_container.bin.bz2"
    L33: "cluster.go:125: curl: (7) Failed to connect to 10.0.31.74 port 12345 after 3098 ms: Could not connect to server"
    L34: "devcontainer.go:236: main script failed: Process exited with status 7_"
    L35: " "
                Diagnostic output for qemu_uefi-amd64, run 4
    L1: " Error: _cluster.go:125: + set -euo pipefail"
    L2: "cluster.go:125: + source /home/core/download-library.sh"
    L3: "cluster.go:125: + download_dev_container_image flatcar_developer_container.bin"
    L4: "cluster.go:125: + local output_bin=flatcar_developer_container.bin"
    L5: "cluster.go:125: + shift"
    L6: "cluster.go:125: + local arch version image_url bzip2cat"
    L7: "cluster.go:125: ++ source /usr/share/flatcar/release"
    L8: "cluster.go:125: +++ FLATCAR_RELEASE_VERSION=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L9: "cluster.go:125: +++ FLATCAR_RELEASE_BOARD=amd64-usr"
    L10: "cluster.go:125: +++ FLATCAR_RELEASE_APPID=_{e96281a6-d1af-4bde-9a0a-97b76e56dc57}_"
    L11: "cluster.go:125: ++ echo amd64"
    L12: "cluster.go:125: + arch=amd64"
    L13: "cluster.go:125: ++ source /usr/share/flatcar/release"
    L14: "cluster.go:125: +++ FLATCAR_RELEASE_VERSION=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L15: "cluster.go:125: +++ FLATCAR_RELEASE_BOARD=amd64-usr"
    L16: "cluster.go:125: +++ FLATCAR_RELEASE_APPID=_{e96281a6-d1af-4bde-9a0a-97b76e56dc57}_"
    L17: "cluster.go:125: ++ echo 4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L18: "cluster.go:125: + version=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L19: "cluster.go:125: ++ process_template http://10.0.31.74:12345/flatcar_developer_container.bin.bz2 amd64 4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L20: "cluster.go:125: ++ local template=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L21: "cluster.go:125: ++ shift"
    L22: "cluster.go:125: ++ local arch=amd64"
    L23: "cluster.go:125: ++ shift"
    L24: "cluster.go:125: ++ local version=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L25: "cluster.go:125: ++ shift"
    L26: "cluster.go:125: ++ local result=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L27: "cluster.go:125: ++ result=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L28: "cluster.go:125: ++ result=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L29: "cluster.go:125: ++ echo http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L30: "cluster.go:125: + image_url=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L31: "cluster.go:125: + echo _Fetching developer container from http://10.0.31.74:12345/flatcar_developer_container.bin.bz2_"
    L32: "cluster.go:125: + curl --fail --silent --show-error --location --retry-delay 1 --retry 60 --retry-connrefused --retry-max-time 60 --connect-timeout 20 --remote-name http://10.0.31.74:12345/flatcar_dev?eloper_container.bin.bz2"
    L33: "cluster.go:125: curl: (7) Failed to connect to 10.0.31.74 port 12345 after 3105 ms: Could not connect to server"
    L34: "devcontainer.go:236: main script failed: Process exited with status 7_"
    L35: " "
                Diagnostic output for qemu_uefi-amd64, run 3
    L1: " Error: _cluster.go:125: + set -euo pipefail"
    L2: "cluster.go:125: + source /home/core/download-library.sh"
    L3: "cluster.go:125: + download_dev_container_image flatcar_developer_container.bin"
    L4: "cluster.go:125: + local output_bin=flatcar_developer_container.bin"
    L5: "cluster.go:125: + shift"
    L6: "cluster.go:125: + local arch version image_url bzip2cat"
    L7: "cluster.go:125: ++ source /usr/share/flatcar/release"
    L8: "cluster.go:125: +++ FLATCAR_RELEASE_VERSION=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L9: "cluster.go:125: +++ FLATCAR_RELEASE_BOARD=amd64-usr"
    L10: "cluster.go:125: +++ FLATCAR_RELEASE_APPID=_{e96281a6-d1af-4bde-9a0a-97b76e56dc57}_"
    L11: "cluster.go:125: ++ echo amd64"
    L12: "cluster.go:125: + arch=amd64"
    L13: "cluster.go:125: ++ source /usr/share/flatcar/release"
    L14: "cluster.go:125: +++ FLATCAR_RELEASE_VERSION=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L15: "cluster.go:125: +++ FLATCAR_RELEASE_BOARD=amd64-usr"
    L16: "cluster.go:125: +++ FLATCAR_RELEASE_APPID=_{e96281a6-d1af-4bde-9a0a-97b76e56dc57}_"
    L17: "cluster.go:125: ++ echo 4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L18: "cluster.go:125: + version=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L19: "cluster.go:125: ++ process_template http://10.0.31.74:12345/flatcar_developer_container.bin.bz2 amd64 4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L20: "cluster.go:125: ++ local template=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L21: "cluster.go:125: ++ shift"
    L22: "cluster.go:125: ++ local arch=amd64"
    L23: "cluster.go:125: ++ shift"
    L24: "cluster.go:125: ++ local version=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L25: "cluster.go:125: ++ shift"
    L26: "cluster.go:125: ++ local result=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L27: "cluster.go:125: ++ result=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L28: "cluster.go:125: ++ result=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L29: "cluster.go:125: ++ echo http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L30: "cluster.go:125: + image_url=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L31: "cluster.go:125: + echo _Fetching developer container from http://10.0.31.74:12345/flatcar_developer_container.bin.bz2_"
    L32: "cluster.go:125: + curl --fail --silent --show-error --location --retry-delay 1 --retry 60 --retry-connrefused --retry-max-time 60 --connect-timeout 20 --remote-name http://10.0.31.74:12345/flatcar_dev?eloper_container.bin.bz2"
    L33: "cluster.go:125: curl: (7) Failed to connect to 10.0.31.74 port 12345 after 3080 ms: Could not connect to server"
    L34: "devcontainer.go:236: main script failed: Process exited with status 7_"
    L35: " "
                Diagnostic output for qemu_uefi-amd64, run 2
    L1: " Error: _cluster.go:125: + set -euo pipefail"
    L2: "cluster.go:125: + source /home/core/download-library.sh"
    L3: "cluster.go:125: + download_dev_container_image flatcar_developer_container.bin"
    L4: "cluster.go:125: + local output_bin=flatcar_developer_container.bin"
    L5: "cluster.go:125: + shift"
    L6: "cluster.go:125: + local arch version image_url bzip2cat"
    L7: "cluster.go:125: ++ source /usr/share/flatcar/release"
    L8: "cluster.go:125: +++ FLATCAR_RELEASE_VERSION=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L9: "cluster.go:125: +++ FLATCAR_RELEASE_BOARD=amd64-usr"
    L10: "cluster.go:125: +++ FLATCAR_RELEASE_APPID=_{e96281a6-d1af-4bde-9a0a-97b76e56dc57}_"
    L11: "cluster.go:125: ++ echo amd64"
    L12: "cluster.go:125: + arch=amd64"
    L13: "cluster.go:125: ++ source /usr/share/flatcar/release"
    L14: "cluster.go:125: +++ FLATCAR_RELEASE_VERSION=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L15: "cluster.go:125: +++ FLATCAR_RELEASE_BOARD=amd64-usr"
    L16: "cluster.go:125: +++ FLATCAR_RELEASE_APPID=_{e96281a6-d1af-4bde-9a0a-97b76e56dc57}_"
    L17: "cluster.go:125: ++ echo 4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L18: "cluster.go:125: + version=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L19: "cluster.go:125: ++ process_template http://10.0.31.74:12345/flatcar_developer_container.bin.bz2 amd64 4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L20: "cluster.go:125: ++ local template=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L21: "cluster.go:125: ++ shift"
    L22: "cluster.go:125: ++ local arch=amd64"
    L23: "cluster.go:125: ++ shift"
    L24: "cluster.go:125: ++ local version=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L25: "cluster.go:125: ++ shift"
    L26: "cluster.go:125: ++ local result=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L27: "cluster.go:125: ++ result=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L28: "cluster.go:125: ++ result=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L29: "cluster.go:125: ++ echo http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L30: "cluster.go:125: + image_url=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L31: "cluster.go:125: + echo _Fetching developer container from http://10.0.31.74:12345/flatcar_developer_container.bin.bz2_"
    L32: "cluster.go:125: + curl --fail --silent --show-error --location --retry-delay 1 --retry 60 --retry-connrefused --retry-max-time 60 --connect-timeout 20 --remote-name http://10.0.31.74:12345/flatcar_dev?eloper_container.bin.bz2"
    L33: "cluster.go:125: curl: (7) Failed to connect to 10.0.31.74 port 12345 after 3081 ms: Could not connect to server"
    L34: "devcontainer.go:236: main script failed: Process exited with status 7_"
    L35: " "
                Diagnostic output for qemu_uefi-amd64, run 1
    L1: " Error: _cluster.go:125: + set -euo pipefail"
    L2: "cluster.go:125: + source /home/core/download-library.sh"
    L3: "cluster.go:125: + download_dev_container_image flatcar_developer_container.bin"
    L4: "cluster.go:125: + local output_bin=flatcar_developer_container.bin"
    L5: "cluster.go:125: + shift"
    L6: "cluster.go:125: + local arch version image_url bzip2cat"
    L7: "cluster.go:125: ++ source /usr/share/flatcar/release"
    L8: "cluster.go:125: +++ FLATCAR_RELEASE_VERSION=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L9: "cluster.go:125: +++ FLATCAR_RELEASE_BOARD=amd64-usr"
    L10: "cluster.go:125: +++ FLATCAR_RELEASE_APPID=_{e96281a6-d1af-4bde-9a0a-97b76e56dc57}_"
    L11: "cluster.go:125: ++ echo amd64"
    L12: "cluster.go:125: + arch=amd64"
    L13: "cluster.go:125: ++ source /usr/share/flatcar/release"
    L14: "cluster.go:125: +++ FLATCAR_RELEASE_VERSION=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L15: "cluster.go:125: +++ FLATCAR_RELEASE_BOARD=amd64-usr"
    L16: "cluster.go:125: +++ FLATCAR_RELEASE_APPID=_{e96281a6-d1af-4bde-9a0a-97b76e56dc57}_"
    L17: "cluster.go:125: ++ echo 4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L18: "cluster.go:125: + version=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L19: "cluster.go:125: ++ process_template http://10.0.31.74:12345/flatcar_developer_container.bin.bz2 amd64 4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L20: "cluster.go:125: ++ local template=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L21: "cluster.go:125: ++ shift"
    L22: "cluster.go:125: ++ local arch=amd64"
    L23: "cluster.go:125: ++ shift"
    L24: "cluster.go:125: ++ local version=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L25: "cluster.go:125: ++ shift"
    L26: "cluster.go:125: ++ local result=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L27: "cluster.go:125: ++ result=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L28: "cluster.go:125: ++ result=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L29: "cluster.go:125: ++ echo http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L30: "cluster.go:125: + image_url=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L31: "cluster.go:125: + echo _Fetching developer container from http://10.0.31.74:12345/flatcar_developer_container.bin.bz2_"
    L32: "cluster.go:125: + curl --fail --silent --show-error --location --retry-delay 1 --retry 60 --retry-connrefused --retry-max-time 60 --connect-timeout 20 --remote-name http://10.0.31.74:12345/flatcar_dev?eloper_container.bin.bz2"
    L33: "cluster.go:125: curl: (7) Failed to connect to 10.0.31.74 port 12345 after 3082 ms: Could not connect to server"
    L34: "devcontainer.go:236: main script failed: Process exited with status 7_"
    L35: " "

🟢 ok docker.base; Succeeded: qemu_uefi-amd64 (1)

🟢 ok docker.btrfs-storage; Succeeded: qemu_uefi-amd64 (1)

🟢 ok docker.containerd-restart; Succeeded: qemu_uefi-amd64 (1)

🟢 ok docker.enable-service.sysext; Succeeded: qemu_uefi-amd64 (1)

🟢 ok docker.lib-coreos-dockerd-compat; Succeeded: qemu_uefi-amd64 (1)

🟢 ok docker.network-openbsd-nc; Succeeded: qemu_uefi-amd64 (1)

🟢 ok docker.selinux; Succeeded: qemu_uefi-amd64 (1)

🟢 ok docker.userns; Succeeded: qemu_uefi-amd64 (1)

🟢 ok kubeadm.v1.34.4.calico.base; Succeeded: qemu_uefi-amd64 (1)

🟢 ok kubeadm.v1.34.4.cilium.base; Succeeded: qemu_uefi-amd64 (1)

🟢 ok kubeadm.v1.34.4.flannel.base; Succeeded: qemu_uefi-amd64 (1)

🟢 ok kubeadm.v1.35.1.calico.base; Succeeded: qemu_uefi-amd64 (1)

🟢 ok kubeadm.v1.35.1.cilium.base; Succeeded: qemu_uefi-amd64 (1)

🟢 ok kubeadm.v1.35.1.flannel.base; Succeeded: qemu_uefi-amd64 (1)

🟢 ok kubeadm.v1.36.1.calico.base; Succeeded: qemu_uefi-amd64 (1)

🟢 ok kubeadm.v1.36.1.cilium.base; Succeeded: qemu_uefi-amd64 (1)

🟢 ok kubeadm.v1.36.1.flannel.base; Succeeded: qemu_uefi-amd64 (1)

🟢 ok linux.nfs.v3; Succeeded: qemu_uefi-amd64 (1)

🟢 ok linux.nfs.v4; Succeeded: qemu_uefi-amd64 (1)

🟢 ok linux.ntp; Succeeded: qemu_uefi-amd64 (1)

🟢 ok misc.fips; Succeeded: qemu_uefi-amd64 (1)

🟢 ok packages; Succeeded: qemu_uefi-amd64 (1)

🟢 ok sysext.custom-docker.sysext; Succeeded: qemu_uefi-amd64 (1)

❌ not ok sysext.custom-oem; Failed: qemu_uefi-amd64 (1, 2, 3, 4, 5)

                Diagnostic output for qemu_uefi-amd64, run 5
    L1: " Error: _cluster.go:125: + set -euo pipefail"
    L2: "cluster.go:125: + source /home/core/download-library.sh"
    L3: "cluster.go:125: + download_dev_container_image flatcar_developer_container.bin"
    L4: "cluster.go:125: + local output_bin=flatcar_developer_container.bin"
    L5: "cluster.go:125: + shift"
    L6: "cluster.go:125: + local arch version image_url bzip2cat"
    L7: "cluster.go:125: ++ source /usr/share/flatcar/release"
    L8: "cluster.go:125: +++ FLATCAR_RELEASE_VERSION=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L9: "cluster.go:125: +++ FLATCAR_RELEASE_BOARD=amd64-usr"
    L10: "cluster.go:125: +++ FLATCAR_RELEASE_APPID=_{e96281a6-d1af-4bde-9a0a-97b76e56dc57}_"
    L11: "cluster.go:125: ++ echo amd64"
    L12: "cluster.go:125: + arch=amd64"
    L13: "cluster.go:125: ++ source /usr/share/flatcar/release"
    L14: "cluster.go:125: +++ FLATCAR_RELEASE_VERSION=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L15: "cluster.go:125: +++ FLATCAR_RELEASE_BOARD=amd64-usr"
    L16: "cluster.go:125: +++ FLATCAR_RELEASE_APPID=_{e96281a6-d1af-4bde-9a0a-97b76e56dc57}_"
    L17: "cluster.go:125: ++ echo 4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L18: "cluster.go:125: + version=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L19: "cluster.go:125: ++ process_template http://10.0.31.74:12345/flatcar_developer_container.bin.bz2 amd64 4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L20: "cluster.go:125: ++ local template=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L21: "cluster.go:125: ++ shift"
    L22: "cluster.go:125: ++ local arch=amd64"
    L23: "cluster.go:125: ++ shift"
    L24: "cluster.go:125: ++ local version=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L25: "cluster.go:125: ++ shift"
    L26: "cluster.go:125: ++ local result=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L27: "cluster.go:125: ++ result=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L28: "cluster.go:125: ++ result=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L29: "cluster.go:125: ++ echo http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L30: "cluster.go:125: + image_url=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L31: "cluster.go:125: + echo _Fetching developer container from http://10.0.31.74:12345/flatcar_developer_container.bin.bz2_"
    L32: "cluster.go:125: + curl --fail --silent --show-error --location --retry-delay 1 --retry 60 --retry-connrefused --retry-max-time 60 --connect-timeout 20 --remote-name http://10.0.31.74:12345/flatcar_dev?eloper_container.bin.bz2"
    L33: "cluster.go:125: curl: (7) Failed to connect to 10.0.31.74 port 12345 after 3070 ms: Could not connect to server"
    L34: "sysext.go:391: main script failed: Process exited with status 7_"
    L35: " "
                Diagnostic output for qemu_uefi-amd64, run 4
    L1: " Error: _cluster.go:125: + set -euo pipefail"
    L2: "cluster.go:125: + source /home/core/download-library.sh"
    L3: "cluster.go:125: + download_dev_container_image flatcar_developer_container.bin"
    L4: "cluster.go:125: + local output_bin=flatcar_developer_container.bin"
    L5: "cluster.go:125: + shift"
    L6: "cluster.go:125: + local arch version image_url bzip2cat"
    L7: "cluster.go:125: ++ source /usr/share/flatcar/release"
    L8: "cluster.go:125: +++ FLATCAR_RELEASE_VERSION=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L9: "cluster.go:125: +++ FLATCAR_RELEASE_BOARD=amd64-usr"
    L10: "cluster.go:125: +++ FLATCAR_RELEASE_APPID=_{e96281a6-d1af-4bde-9a0a-97b76e56dc57}_"
    L11: "cluster.go:125: ++ echo amd64"
    L12: "cluster.go:125: + arch=amd64"
    L13: "cluster.go:125: ++ source /usr/share/flatcar/release"
    L14: "cluster.go:125: +++ FLATCAR_RELEASE_VERSION=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L15: "cluster.go:125: +++ FLATCAR_RELEASE_BOARD=amd64-usr"
    L16: "cluster.go:125: +++ FLATCAR_RELEASE_APPID=_{e96281a6-d1af-4bde-9a0a-97b76e56dc57}_"
    L17: "cluster.go:125: ++ echo 4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L18: "cluster.go:125: + version=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L19: "cluster.go:125: ++ process_template http://10.0.31.74:12345/flatcar_developer_container.bin.bz2 amd64 4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L20: "cluster.go:125: ++ local template=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L21: "cluster.go:125: ++ shift"
    L22: "cluster.go:125: ++ local arch=amd64"
    L23: "cluster.go:125: ++ shift"
    L24: "cluster.go:125: ++ local version=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L25: "cluster.go:125: ++ shift"
    L26: "cluster.go:125: ++ local result=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L27: "cluster.go:125: ++ result=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L28: "cluster.go:125: ++ result=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L29: "cluster.go:125: ++ echo http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L30: "cluster.go:125: + image_url=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L31: "cluster.go:125: + echo _Fetching developer container from http://10.0.31.74:12345/flatcar_developer_container.bin.bz2_"
    L32: "cluster.go:125: + curl --fail --silent --show-error --location --retry-delay 1 --retry 60 --retry-connrefused --retry-max-time 60 --connect-timeout 20 --remote-name http://10.0.31.74:12345/flatcar_dev?eloper_container.bin.bz2"
    L33: "cluster.go:125: curl: (7) Failed to connect to 10.0.31.74 port 12345 after 3110 ms: Could not connect to server"
    L34: "sysext.go:391: main script failed: Process exited with status 7_"
    L35: " "
                Diagnostic output for qemu_uefi-amd64, run 3
    L1: " Error: _cluster.go:125: + set -euo pipefail"
    L2: "cluster.go:125: + source /home/core/download-library.sh"
    L3: "cluster.go:125: + download_dev_container_image flatcar_developer_container.bin"
    L4: "cluster.go:125: + local output_bin=flatcar_developer_container.bin"
    L5: "cluster.go:125: + shift"
    L6: "cluster.go:125: + local arch version image_url bzip2cat"
    L7: "cluster.go:125: ++ source /usr/share/flatcar/release"
    L8: "cluster.go:125: +++ FLATCAR_RELEASE_VERSION=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L9: "cluster.go:125: +++ FLATCAR_RELEASE_BOARD=amd64-usr"
    L10: "cluster.go:125: +++ FLATCAR_RELEASE_APPID=_{e96281a6-d1af-4bde-9a0a-97b76e56dc57}_"
    L11: "cluster.go:125: ++ echo amd64"
    L12: "cluster.go:125: + arch=amd64"
    L13: "cluster.go:125: ++ source /usr/share/flatcar/release"
    L14: "cluster.go:125: +++ FLATCAR_RELEASE_VERSION=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L15: "cluster.go:125: +++ FLATCAR_RELEASE_BOARD=amd64-usr"
    L16: "cluster.go:125: +++ FLATCAR_RELEASE_APPID=_{e96281a6-d1af-4bde-9a0a-97b76e56dc57}_"
    L17: "cluster.go:125: ++ echo 4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L18: "cluster.go:125: + version=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L19: "cluster.go:125: ++ process_template http://10.0.31.74:12345/flatcar_developer_container.bin.bz2 amd64 4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L20: "cluster.go:125: ++ local template=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L21: "cluster.go:125: ++ shift"
    L22: "cluster.go:125: ++ local arch=amd64"
    L23: "cluster.go:125: ++ shift"
    L24: "cluster.go:125: ++ local version=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L25: "cluster.go:125: ++ shift"
    L26: "cluster.go:125: ++ local result=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L27: "cluster.go:125: ++ result=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L28: "cluster.go:125: ++ result=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L29: "cluster.go:125: ++ echo http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L30: "cluster.go:125: + image_url=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L31: "cluster.go:125: + echo _Fetching developer container from http://10.0.31.74:12345/flatcar_developer_container.bin.bz2_"
    L32: "cluster.go:125: + curl --fail --silent --show-error --location --retry-delay 1 --retry 60 --retry-connrefused --retry-max-time 60 --connect-timeout 20 --remote-name http://10.0.31.74:12345/flatcar_dev?eloper_container.bin.bz2"
    L33: "cluster.go:125: curl: (7) Failed to connect to 10.0.31.74 port 12345 after 3092 ms: Could not connect to server"
    L34: "sysext.go:391: main script failed: Process exited with status 7_"
    L35: " "
                Diagnostic output for qemu_uefi-amd64, run 2
    L1: " Error: _cluster.go:125: + set -euo pipefail"
    L2: "cluster.go:125: + source /home/core/download-library.sh"
    L3: "cluster.go:125: + download_dev_container_image flatcar_developer_container.bin"
    L4: "cluster.go:125: + local output_bin=flatcar_developer_container.bin"
    L5: "cluster.go:125: + shift"
    L6: "cluster.go:125: + local arch version image_url bzip2cat"
    L7: "cluster.go:125: ++ source /usr/share/flatcar/release"
    L8: "cluster.go:125: +++ FLATCAR_RELEASE_VERSION=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L9: "cluster.go:125: +++ FLATCAR_RELEASE_BOARD=amd64-usr"
    L10: "cluster.go:125: +++ FLATCAR_RELEASE_APPID=_{e96281a6-d1af-4bde-9a0a-97b76e56dc57}_"
    L11: "cluster.go:125: ++ echo amd64"
    L12: "cluster.go:125: + arch=amd64"
    L13: "cluster.go:125: ++ source /usr/share/flatcar/release"
    L14: "cluster.go:125: +++ FLATCAR_RELEASE_VERSION=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L15: "cluster.go:125: +++ FLATCAR_RELEASE_BOARD=amd64-usr"
    L16: "cluster.go:125: +++ FLATCAR_RELEASE_APPID=_{e96281a6-d1af-4bde-9a0a-97b76e56dc57}_"
    L17: "cluster.go:125: ++ echo 4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L18: "cluster.go:125: + version=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L19: "cluster.go:125: ++ process_template http://10.0.31.74:12345/flatcar_developer_container.bin.bz2 amd64 4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L20: "cluster.go:125: ++ local template=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L21: "cluster.go:125: ++ shift"
    L22: "cluster.go:125: ++ local arch=amd64"
    L23: "cluster.go:125: ++ shift"
    L24: "cluster.go:125: ++ local version=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L25: "cluster.go:125: ++ shift"
    L26: "cluster.go:125: ++ local result=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L27: "cluster.go:125: ++ result=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L28: "cluster.go:125: ++ result=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L29: "cluster.go:125: ++ echo http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L30: "cluster.go:125: + image_url=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L31: "cluster.go:125: + echo _Fetching developer container from http://10.0.31.74:12345/flatcar_developer_container.bin.bz2_"
    L32: "cluster.go:125: + curl --fail --silent --show-error --location --retry-delay 1 --retry 60 --retry-connrefused --retry-max-time 60 --connect-timeout 20 --remote-name http://10.0.31.74:12345/flatcar_dev?eloper_container.bin.bz2"
    L33: "cluster.go:125: curl: (7) Failed to connect to 10.0.31.74 port 12345 after 3092 ms: Could not connect to server"
    L34: "sysext.go:391: main script failed: Process exited with status 7_"
    L35: " "
                Diagnostic output for qemu_uefi-amd64, run 1
    L1: " Error: _cluster.go:125: + set -euo pipefail"
    L2: "cluster.go:125: + source /home/core/download-library.sh"
    L3: "cluster.go:125: + download_dev_container_image flatcar_developer_container.bin"
    L4: "cluster.go:125: + local output_bin=flatcar_developer_container.bin"
    L5: "cluster.go:125: + shift"
    L6: "cluster.go:125: + local arch version image_url bzip2cat"
    L7: "cluster.go:125: ++ source /usr/share/flatcar/release"
    L8: "cluster.go:125: +++ FLATCAR_RELEASE_VERSION=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L9: "cluster.go:125: +++ FLATCAR_RELEASE_BOARD=amd64-usr"
    L10: "cluster.go:125: +++ FLATCAR_RELEASE_APPID=_{e96281a6-d1af-4bde-9a0a-97b76e56dc57}_"
    L11: "cluster.go:125: ++ echo amd64"
    L12: "cluster.go:125: + arch=amd64"
    L13: "cluster.go:125: ++ source /usr/share/flatcar/release"
    L14: "cluster.go:125: +++ FLATCAR_RELEASE_VERSION=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L15: "cluster.go:125: +++ FLATCAR_RELEASE_BOARD=amd64-usr"
    L16: "cluster.go:125: +++ FLATCAR_RELEASE_APPID=_{e96281a6-d1af-4bde-9a0a-97b76e56dc57}_"
    L17: "cluster.go:125: ++ echo 4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L18: "cluster.go:125: + version=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L19: "cluster.go:125: ++ process_template http://10.0.31.74:12345/flatcar_developer_container.bin.bz2 amd64 4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L20: "cluster.go:125: ++ local template=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L21: "cluster.go:125: ++ shift"
    L22: "cluster.go:125: ++ local arch=amd64"
    L23: "cluster.go:125: ++ shift"
    L24: "cluster.go:125: ++ local version=4734.0.0+nightly-20260617-2100-10-g02a218f237"
    L25: "cluster.go:125: ++ shift"
    L26: "cluster.go:125: ++ local result=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L27: "cluster.go:125: ++ result=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L28: "cluster.go:125: ++ result=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L29: "cluster.go:125: ++ echo http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L30: "cluster.go:125: + image_url=http://10.0.31.74:12345/flatcar_developer_container.bin.bz2"
    L31: "cluster.go:125: + echo _Fetching developer container from http://10.0.31.74:12345/flatcar_developer_container.bin.bz2_"
    L32: "cluster.go:125: + curl --fail --silent --show-error --location --retry-delay 1 --retry 60 --retry-connrefused --retry-max-time 60 --connect-timeout 20 --remote-name http://10.0.31.74:12345/flatcar_dev?eloper_container.bin.bz2"
    L33: "cluster.go:125: curl: (7) Failed to connect to 10.0.31.74 port 12345 after 3102 ms: Could not connect to server"
    L34: "sysext.go:391: main script failed: Process exited with status 7_"
    L35: " "

🟢 ok sysext.disable-containerd; Succeeded: qemu_uefi-amd64 (1)

🟢 ok sysext.disable-docker; Succeeded: qemu_uefi-amd64 (1)

🟢 ok sysext.simple; Succeeded: qemu_uefi-amd64 (1)

🟢 ok systemd.journal.remote; Succeeded: qemu_uefi-amd64 (1)

🟢 ok systemd.journal.user; Succeeded: qemu_uefi-amd64 (1)

🟢 ok systemd.sysusers.gshadow; Succeeded: qemu_uefi-amd64 (1)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants