From 24d2ceeb9a7dfa9b34c31c211e94833ff459335e Mon Sep 17 00:00:00 2001 From: Krzesimir Nowak Date: Thu, 9 Mar 2023 11:02:23 +0100 Subject: [PATCH 1/3] coreos-base/coreos: Add pigz to production image --- .../coreos-overlay/coreos-base/coreos/coreos-0.0.1.ebuild | 1 + 1 file changed, 1 insertion(+) diff --git a/sdk_container/src/third_party/coreos-overlay/coreos-base/coreos/coreos-0.0.1.ebuild b/sdk_container/src/third_party/coreos-overlay/coreos-base/coreos/coreos-0.0.1.ebuild index 87212ef039..78f1ee5523 100644 --- a/sdk_container/src/third_party/coreos-overlay/coreos-base/coreos/coreos-0.0.1.ebuild +++ b/sdk_container/src/third_party/coreos-overlay/coreos-base/coreos/coreos-0.0.1.ebuild @@ -91,6 +91,7 @@ RDEPEND="${RDEPEND} app-arch/bzip2 app-arch/lbzip2 app-arch/lz4 + app-arch/pigz app-arch/xz-utils app-arch/zstd app-arch/tar From be7737b583723a86b76ee9db98f08363a3f32dc8 Mon Sep 17 00:00:00 2001 From: Krzesimir Nowak Date: Thu, 9 Mar 2023 13:06:02 +0100 Subject: [PATCH 2/3] changelog: Add an entry --- .../coreos-overlay/changelog/changes/2023-03-09-pigz.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 sdk_container/src/third_party/coreos-overlay/changelog/changes/2023-03-09-pigz.md diff --git a/sdk_container/src/third_party/coreos-overlay/changelog/changes/2023-03-09-pigz.md b/sdk_container/src/third_party/coreos-overlay/changelog/changes/2023-03-09-pigz.md new file mode 100644 index 0000000000..4628fdb6bd --- /dev/null +++ b/sdk_container/src/third_party/coreos-overlay/changelog/changes/2023-03-09-pigz.md @@ -0,0 +1 @@ +- Added pigz to the production image. The parallel gzip implementation is useful to speed up the decompression time spent for large container image imports/exports. From b14d6d755a69a563f4fc3e4b902a44b775c89deb Mon Sep 17 00:00:00 2001 From: Krzesimir Nowak Date: Thu, 9 Mar 2023 14:11:21 +0100 Subject: [PATCH 3/3] changelog: Improve wording MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Kai Lüke --- .../coreos-overlay/changelog/changes/2023-03-09-pigz.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk_container/src/third_party/coreos-overlay/changelog/changes/2023-03-09-pigz.md b/sdk_container/src/third_party/coreos-overlay/changelog/changes/2023-03-09-pigz.md index 4628fdb6bd..f5457e2a49 100644 --- a/sdk_container/src/third_party/coreos-overlay/changelog/changes/2023-03-09-pigz.md +++ b/sdk_container/src/third_party/coreos-overlay/changelog/changes/2023-03-09-pigz.md @@ -1 +1 @@ -- Added pigz to the production image. The parallel gzip implementation is useful to speed up the decompression time spent for large container image imports/exports. +- Added `pigz` to the image, a parallel gzip implementation, which is useful to speed up the (de)compression for large container image imports/exports ([coreos-overlay#2504](https://github.com/flatcar/coreos-overlay/pull/2504))