-
Notifications
You must be signed in to change notification settings - Fork 59
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: Remove partition table from disk removed from a VG #464
fix: Remove partition table from disk removed from a VG #464
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #464 +/- ##
==========================================
- Coverage 16.54% 10.73% -5.81%
==========================================
Files 2 8 +6
Lines 284 1946 +1662
Branches 79 0 -79
==========================================
+ Hits 47 209 +162
- Misses 237 1737 +1500
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
When removing a PV from a VG we currently remove only the PV partition and not the partition table on the disk. This fixes this by removing the partition table too.
da0f166
to
6f6f115
Compare
@vojtechtrefny looks good - did something change in el10? Because if I look at the output of |
Sorry, I'm wrong - on centos-9 there is a partition table, but it is different.
|
[citest] |
@spetrosi https://dl.fedoraproject.org/pub/alt/linuxsystemroles/logs/tf_storage-464_CentOS-Stream-10-2.17_20240801-082216/artifacts - I don't see any failures, but the github action result is failed? |
not all of the tests ran - did the test run get killed by some sort of timeout? One problem with the storage tests is that they take hours to complete - may need to increase resources/timeout - maybe testing farm is killing the test because it takes too long. |
When removing a PV from a VG we currently remove only the PV partition and not the partition table on the disk. This fixes this by removing the partition table too.