Podman fuse-overlayfs #21962
Replies: 2 comments 2 replies
-
Quote from Kernel Newbies summary about Linux 5.11 Quote from Red Hat Enterprise Linux 8.5 release notes It looks like a documentation bug. I guess it should be 5.11 instead of 5.12 in this line podman/docs/tutorials/performance.md Line 86 in 56e0f06 (I don't remember where I got the version number 5.12 from when I wrote the text b5ee4de) |
Beta Was this translation helpful? Give feedback.
-
Please open a PR to fix the documentation to state that RHEL 8 has support. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Based on this:
https://github.com/containers/podman/blob/main/docs/tutorials/performance.md
It appears the RHEL 8 kernel should not be using native overlayfs as the kernel is not >= 5.12.
However, if you run the command to check the overlay diff without changing the storage.conf for the non-root user, it will show true for:
podman info -f ‘{{index .Storage.GraphStatus “Native Overlay Diff”}}
This does not seem right if the non-root user should by default not be using native overlayfs and no changes were made to the default podman install. It is almost as if the default install thinks the non-root user should be using native overlayfs.
But, If I set the storage.conf for the user specifically to fuse-overlays, the result of the podman info command above looks more correct and returns false indicating it is using fuse-overlayfs. Changing the options globally seems to have no impact on the non-root users result when running podman info command even when no storage.conf exists for the given user.
We have had a lot of issues with COPY commands in dockerfiles being extremely slow and hoping this change for the user will help, but the performance.md page related to the output of podman info command seems strange with regards to specified kernel support and default behavior.
Beta Was this translation helpful? Give feedback.
All reactions