The PuzzleFS container filesystem
The PuzzleFS container filesystem
Posted Sep 26, 2023 14:35 UTC (Tue) by hsiangkao (guest, #123981)In reply to: The PuzzleFS container filesystem by bluca
Parent article: The PuzzleFS container filesystem
- EROFS + dm-verity block device blobs as data only layers;
- a small overlayfs meta layer (with EROFS + dm-verity) to merge these data storage blobs into a merged rootfs.
Thus all layers are under dm-verity protection, so the whole image won't be tampered.
Alternatively, as an EROFS self-containerd approach, EROFS could share page cache if files with same data across images without relying on overlayfs, anyway.
Posted Sep 26, 2023 15:57 UTC (Tue)
by bluca (subscriber, #118303)
[Link] (2 responses)
Posted Sep 26, 2023 16:08 UTC (Tue)
by hsiangkao (guest, #123981)
[Link] (1 responses)
In that case, memory of /usr/foo/a is deduplicated according to how overlayfs works since /usr/foo/a is on the same EROFS instance.
Posted Sep 26, 2023 16:57 UTC (Tue)
by bluca (subscriber, #118303)
[Link]
The PuzzleFS container filesystem
The PuzzleFS container filesystem
That already works without any extra built-in feature.
The PuzzleFS container filesystem