-
Notifications
You must be signed in to change notification settings - Fork 789
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
skopeo copy → oci-archive: cannot disable compression #1436
Comments
Thanks for your report. Is this still relevant, now that both containers/image#1313 and #1406 has been fixed? It should now be possible to request compression using the appropriate Zstd level. Or do you truly need decompression as a goal, not just an intermediate step for compressing the image? |
#1406 will land in skopeo > 1.4.1, which is not released yet. so I do not know. klauspost/compress#410 provides in total four compression levels: As you stated in containers/image#1313 (comment) “we are not going to dig deep down into alternative compression algorithm implementations to figure out how they differ and to work on changing them to squeeze extra efficiency”. Since squeezing extra efficiency is out of scope, there shall be possible to have uncompressed output. |
A friendly reminder that this issue had no activity for 30 days. |
Skopeo 1.5.0 has been released since. @dilyanpalauzov can you re-test whether that produces acceptable compression levels, please? |
The blobs/sha256-file is gzip compressed, If I |
Oh, there’s actually been a Is that was was necessary? |
A friendly reminder that this issue had no activity for 30 days. |
@dilyanpalauzov please reopen if |
As discussed at containers/image#1313, the zstd compression, offered by
skopeo copy
v1.4.1, is worse that the Zstandard compression offered by thezstd
command line tool. I want to usescopeo copy
tooci-archive:
destination. I want that the blobs are not compressed.It turns out, that there is no option to offer uncompressed blobs.
That is, the image has
"layers":[{"mediaType":"application/vnd.oci.image.layer.v1.tar+gzip","digest":"
, I want it to have the final+gzip
stripped.Rationale: it is more safe efficient, if the image is compressed with the
zstd
command and sent as.tar.zst
file.• Extend the parameter
skopeo copy --dest-decompress
to function also for the non-dir transports.The text was updated successfully, but these errors were encountered: