feat(migration): add chunked lane (zstd:chunked + unified storage)#187
Closed
castrojo wants to merge 1 commit into
Closed
feat(migration): add chunked lane (zstd:chunked + unified storage)#187castrojo wants to merge 1 commit into
castrojo wants to merge 1 commit into
Conversation
Add a third migration lane to rechunk-to-chunkah-migration.yaml that tests the target end-state: switching from ublue-os/bluefin (gzip) to a zstd:chunked projectbluefin/bluefin image with unified bootc storage. Changes: - chunked-enabled parameter (default 'true') gates all chunked steps; set to 'false' to disable the lane without touching anything else - chunkah-image-chunked / chunkah-image-tag-chunked parameters point at the local zot (192.168.1.102:5000/bluefin:zstd-chunked) - prepare-chunked-image template: skopeo-copies the chunkah gzip image to local zot with --dest-compress-format=zstd:chunked before any VM provisioning runs - provision-chunked + migration-chunked lanes wired into the matrix, both gated by chunked-enabled; teardown-chunked added to cleanup - Backport tls_flag fix to inspect-image-compression (local HTTP registry needs --tls-verify=false in skopeo inspect) - Backport local registry trust injection to run-bootc-switch: when switching to 192.168.1.102:5000/* injects registries.conf.d entry + policy.json patch and drops --enforce-container-sigpolicy; verifies registry is reachable before attempting the switch Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Collaborator
Author
|
Wrong repo — zstd:chunked test coverage belongs in projectbluefin/testsuite, not here. Closing. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Adds a third lane to
rechunk-to-chunkah-migration.yamlthat tests the target end-state: migrating fromublue-os/bluefin(gzip) →projectbluefin/bluefinwith zstd:chunked compression + unified bootc storage.Why
The existing two lanes cover gzip (default storage) and gzip (unified storage). This adds the missing zstd:chunked scenario which is the format we expect to ship long-term.
How
chunked-enabled"true""false"to disable all chunked steps centrallychunkah-image-chunked192.168.1.102:5000/bluefinchunkah-image-tag-chunkedzstd-chunkedNew steps (all gated by
chunked-enabled)prepare-chunked-image— skopeo-copies the published chunkah gzip image to local zot with--dest-compress-format=zstd:chunkedbefore any VMs are provisionedprovision-chunked— spins up a fresh VM from the legacy golden diskmigration-chunked— runs the full forward+backward migration sequence withstorage-variant: experimental-unified-storagetargeting the local zotteardown-chunked— cleans up the VM on exitBackports from
zstd-migration-test.yamlinspect-image-compression:tls_flagdetection for local HTTP registries (--tls-verify=false)run-bootc-switch: local registry trust injection (registries.conf.d + policy.json patch, reachability probe) when switching to192.168.1.102:5000/*Disabling