Initial draft of the image extension ADR#574
Open
magerstam wants to merge 6 commits into
Open
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a new Architecture Decision Record (ADR) to define ICT’s support boundaries for extending existing image artifacts—explicitly supporting additive extension of disk images (RAW/VHD-style) while treating generic mutation of arbitrary ISO installer media as out of scope unless implemented via explicit, versioned adapters.
Changes:
- Introduces an ADR describing supported vs. unsupported baseline extension behaviors (disk images vs. ISO installers).
- Proposes template/schema directions (
baseline,extensionPolicy,validation) for expressing composition mode and extension policy. - Documents scope, phased approach, risks/mitigations, and testing expectations for baseline extension.
Comment on lines
+35
to
+37
| ## Context | ||
|
|
||
| Image Composer Tool supports image creation across multiple Linux distributions |
arodage
reviewed
May 27, 2026
arodage
reviewed
May 27, 2026
arodage
reviewed
May 27, 2026
arodage
reviewed
May 27, 2026
arodage
reviewed
May 27, 2026
arodage
reviewed
May 27, 2026
arodage
reviewed
May 27, 2026
arodage
reviewed
May 27, 2026
arodage
reviewed
May 27, 2026
arodage
reviewed
May 27, 2026
arodage
reviewed
May 27, 2026
arodage
reviewed
May 27, 2026
Contributor
|
any changes in CLI? |
Contributor
Author
We could consider new options, but not sure if it is immediately required. A few things that comes to mind are:
|
arodage
reviewed
May 30, 2026
arodage
reviewed
Jun 1, 2026
arodage
reviewed
Jun 1, 2026
kblaszczak-intel
approved these changes
Jun 3, 2026
Contributor
kblaszczak-intel
left a comment
There was a problem hiding this comment.
ADR files do not require docs review but if an approval is needed, here it is ;)
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.
Merge Checklist
All boxes should be checked before merging the PR
Description
This PR adds an ADR defining the support boundary for extending existing image artifacts in ICT.
The ADR clarifies that RAW/VHD-style disk images can be supported as additive composition baselines, while arbitrary ISO installer mutation is intentionally out of scope. Disk image extension is framed around mounting and inspecting the baseline, adding repositories and packages, resolving dependencies, detecting conflicts, resizing where supported, regenerating boot artifacts, and validating the resulting image.
The ADR also distinguishes this from ICT’s existing ISO live installer flow. ICT-owned ISO installer behavior can continue to evolve through known internal contracts, but external ISO remastering should only be added through explicit, versioned adapters.
Any Newly Introduced Dependencies
How Has This Been Tested?