Skip to content

Commit

Permalink
Fix pulling signed images (#1369)
Browse files Browse the repository at this point in the history
This fixes "pushing signatures for OCI images is not supported" error
when working with signed source images.

If policy context requires signature validation for a registry
we will still be performing it on pull, but we will be removing
source signatures when copying into a temporary OCI layout
for unpacking.

Signed-off-by: Mikalai Radchuk <[email protected]>
  • Loading branch information
m1kola authored Oct 14, 2024
1 parent 78b586a commit fe84c5f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions internal/rukpak/source/containers_image.go
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,12 @@ func (i *ContainersImageRegistry) Unpack(ctx context.Context, bundle *BundleSour
//////////////////////////////////////////////////////
if _, err := copy.Image(ctx, policyContext, layoutRef, dockerRef, &copy.Options{
SourceCtx: srcCtx,
// We use the OCI layout as a temporary storage and
// pushing signatures for OCI images is not supported
// so we remove the source signatures when copying.
// Signature validation will still be performed
// accordingly to a provided policy context.
RemoveSignatures: true,
}); err != nil {
return nil, fmt.Errorf("error copying image: %w", err)
}
Expand Down

0 comments on commit fe84c5f

Please sign in to comment.