rancher / elemental

Elemental is a software stack enabling centralized, full cloud-native OS management with Kubernetes.
https://elemental.docs.rancher.com/
Apache License 2.0
301 stars 39 forks source link

Building 'chunked' images to minimize download size on update #1513

Open kkaempf opened 2 months ago

kkaempf commented 2 months ago

After #1512 is done, we should run an experiment with chunked builds and podman.

container-compression-format:FORMAT "Sets a compression format for container layers. Possible values are gzip, zstd, zstd:chunked. Every value other than gzip is only supported by podman and buildah."

The zstd:chunked option should allow for dramatically reduced download sizes when updating containers. Reportedly podman then compares layers on a file-by-file basis and only downloads changed files. This should be even more efficient than delta rpms.

kkaempf commented 3 weeks ago

See #1444