Support for Multi-Architecture Index Manifest#198
Merged
Conversation
f9a8cf5 to
ce204b6
Compare
Member
Author
|
For a quick test: |
93c6cb6 to
2bc2230
Compare
lukasfrank
requested changes
May 13, 2025
Member
|
How about also adding |
bd5bc0e to
a9d3765
Compare
Member
Author
Sounds good! I've added a --config flag to support parsing from a file -- if it's not provided, it’ll just fall back to the command-line flags. |
a9d3765 to
291b5d1
Compare
291b5d1 to
0014bf5
Compare
lukasfrank
reviewed
Jul 16, 2025
82f97fd to
b4de9eb
Compare
5da70ee to
6802da1
Compare
6802da1 to
07c4547
Compare
lukasfrank
approved these changes
Jul 22, 2025
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.
Proposed Changes
This PR extends the image building, inspecting, listing, and pushing workflows to support [OCI index manifests](https://github.com/opencontainers/image-spec/blob/main/image-index.md) for multi-architecture images.
🔧 Key Changes
Build command enhancements:
--multi-arch: Builds a top-level index manifest referencing per-arch layered manifests (e.g.,amd64,arm64). Respects all per-arch inputs specified via--<flag>-<arch>format.--multi-archis not used, the--archflag becomes mandatory to clarify the target platform for a single image.Push command enhancements:
--push-sub-manifests: Pushes the index manifest along with all referenced architecture-specific sub-manifests.🧪 Example Test Command
Feedback on the flag structure and UX is very welcome!!
Fixes #