Skip to content

Commit 3cdfc10

Browse files
committed
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. Signed-off-by: Paweł Gronowski <[email protected]>
1 parent e751b6b commit 3cdfc10

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

core/remotes/handlers.go

+2
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,8 @@ func MakeRefKey(ctx context.Context, desc ocispec.Descriptor) string {
8080
return "layer-" + key
8181
case images.IsKnownConfig(desc.MediaType):
8282
return "config-" + key
83+
case images.IsAttestationType(desc.MediaType):
84+
return "attestation-" + key
8385
default:
8486
log.G(ctx).Warnf("reference for unknown type: %s", desc.MediaType)
8587
return "unknown-" + key

0 commit comments

Comments
 (0)