Start to build up a mutate
package.
#729
Merged
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.
This is not yet used, but start to lay out some useful utilities for walking over and manipulating Images and Indices.
The first bit is
mutate.AppendManifests
, which builds around the utility with the same name in GGCR. This utility produces anoci.SignedImageIndex
, where (because of the mutation) the signatures are necessarily empty, but which provides access to the signatures of the entities contained within it. This was mostly useful for constructing images for tests.The second bit is
mutate.Map
, which surfaces a way to apply aMutator
function to theoci.SignedEntity
s contained within a particularoci.SignedEntity
. Notable features:Mutator
s can control whether they descend into the children of indices (useful for recursive signing or signature verification).Mutator
s can filter entities by returningnil
withouterror
.Mutator
s are called before and (if changed) after its children are walked, which is detectable via helpers onctx
.Mutator
s can return their input entity if they are just a simple readonly walk.Signed-off-by: Matt Moore [email protected]
Ticket Link
Related: #666
Release Note