munet: emulated USB mounting option (in addition to 9p) for Qemu nodes - #68
Merged
Merged
Conversation
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #68 +/- ##
==========================================
- Coverage 60.07% 59.17% -0.91%
==========================================
Files 19 19
Lines 5829 5832 +3
==========================================
- Hits 3502 3451 -51
- Misses 2327 2381 +54 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
liambrady
marked this pull request as ready for review
August 12, 2025 23:03
Shared volumes are currently only mounted into L3Qemu nodes via 9p file system support. 9p is unavailable in some enironments, such as within RHEL virtual machines. This commit implements an alternative method of mounting volumes, specifically through Qemu's ability to emulate directories as fat32 USB drives. Signed-off-by: Liam Brady <lbrady@labn.net>
Covers previously untested code. Additionally covers the newly introduces USB mounting option for hosts that do not support the 9p file system type. Signed-off-by: Liam Brady <lbrady@labn.net>
Signed-off-by: Christian Hopps <chopps@labn.net>
choppsv1
force-pushed
the
liambrady/usb_mounting
branch
from
October 1, 2025 13:24
6877c3a to
dd8547a
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Shared volumes are currently only mounted into L3Qemu nodes via 9p file system support. 9p is unavailable in some environments, such as within RHEL virtual machines. This commit implements an alternative method of mounting volumes, specifically through Qemu's ability to emulate directories as fat32 USB drives.
The added tests cover previously untested code. It additionally covers the newly introduces USB mounting option for hosts that do not support the 9p file system type.