Description of problem: Not having fuse-overlayfs installed wastes lot of diskspace while pulling container images as user. Version-Release number of selected component (if applicable): 31 How reproducible: Every time Steps to Reproduce: 1. as user: docker pull ansible/awx_task:10.0.0 Actual results: My 15GB LV got full and I didn't receive 2GB image. Expected results: ``` REPOSITORY TAG IMAGE ID CREATED SIZE docker.io/ansible/awx_task 10.0.0 a968a1c4d9fd 2 weeks ago 2.1 GB ``` Additional info: See this podman issue: https://github.com/containers/libpod/issues/5806 The fix is to ``` sudo rpm-ostree install fuse-overlayfs ``` Which helps to reduce diskspace by using overlayfs instead of vfs. I see this as mandatory addition to Fedora-IoT image, as the sole purpose of the release is to run containers. And without overlayfs the usage is very suboptimal.
We've added this to IoT on F-32 already, is this F-31?
Yes, 31. Excellent, thanks.