-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Don't produce unnecessary logs when encountering attestations #11327
Don't produce unnecessary logs when encountering attestations #11327
Conversation
Before this patch, calling `image.Children` on an image built with BuildKit would produce unnecessary `encountered unknown type application/vnd.in-toto+json; children may not be fetched` debug logs, because the media type is neither a known layer or config type. Make the `image.Children` aware of the attestation layers and don't attempt to traverse them. Signed-off-by: Paweł Gronowski <[email protected]>
Don't produce `reference for unknown type: application/vnd.in-toto+json` warning logs when pushing/fetching an image containing the attestation manifests. Signed-off-by: Paweł Gronowski <[email protected]>
Hi @vvoland. Thanks for your PR. I'm waiting for a containerd member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
This change LGTM, but I wonder if we also need to consider filtering out attestations at the layer "above" the in-toto media type? In the image index, each platform architecture (which is up to 5-7 for many official DockerHub images) has an additional OCI image manifest entry using the standard OCI media type, that, when descended to in this code, will add the config object and the "layers" to the array of children. This PR is filtering out logging of those "layers" which are what actually contain the in toto media type. Maybe this concern is for a follow-up PR, but if we just filtered out the "dummy" manifests that included in-toto attestations that would keep this code from even doing all that fetching and parsing when it is only going to find in-toto objects as the leaves of that target "dummy" manifest. For clarity, here is a snippet of the alpine:latest image on DockerHub's list of manifests in the image index; as noted above every entry for a platform also has this image manifest with a specific annotation: {
"annotations" : {
"com.docker.official-images.bashbrew.arch" : "amd64",
"vnd.docker.reference.digest" : "sha256:483f502c0e6aff6d80a807f25d3f88afa40439c29fdd2d21a0912e0f42db842a",
"vnd.docker.reference.type" : "attestation-manifest"
},
"digest" : "sha256:dbfa325a01bb58ad0d54ec0a8041d98329109fd99286e45b36e2dbf9ed407c41",
"mediaType" : "application/vnd.oci.image.manifest.v1+json",
"platform" : {
"architecture" : "unknown",
"os" : "unknown"
},
"size" : 838
}, |
Wouldn't it be too much though? They are still children of that manifests, so I would expect the |
Bump, I think this one is ready to be merged :) |
ping @estesp @AkihiroSuda can we add this to merge queue? thank you! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This could also use filtering for spdx.
/cherry-pick release/1.6 |
@dmcgowan: #11327 failed to apply on top of branch "release/1.6":
In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
/cherry-pick release/2.0 |
Of course 1.6 and 1.7 will have to be manual cherry-pick |
@dmcgowan: new pull request created: #11537 In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
Fix unnecessary log spam when dealing with BuildKit images containing attestation manifests.
core/images: Ignore attestations when traversing children
Before this patch, calling
image.Children
on an image built with BuildKit would produce unnecessaryencountered unknown type application/vnd.in-toto+json; children may not be fetched
debug logs, because the media type is neither a known layer or config type.Make the
image.Children
aware of the attestation layers and don't attempt to traverse them.core/remotes: Handle attestations in MakeRefKey
Don't produce
reference for unknown type: application/vnd.in-toto+json
warning logs when pushing/fetching an image containing the attestation manifests.