-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
[NO TESTS NEEDED] Fix (experimental) Volume Plugin in rootless mode #9685
[NO TESTS NEEDED] Fix (experimental) Volume Plugin in rootless mode #9685
Conversation
Git validation is complaining that your commits don't have a signoff - I think it will also complain that you don't have tests. You can add a test (a slightly-changed version (option added) of https://github.com/containers/podman/blob/master/test/e2e/volume_plugin_test.go#L53-L85 would work) or add /approve |
6a7ff3d
to
2c97d14
Compare
At this point no new tests are needed, because there is no reliable and stable volume plugin yet. Using unstable volume plugin is rather harmful, as such test is much more likely to break due to unrelated issue, than due to regression of this fix. |
2c97d14
to
140f1cf
Compare
Sorry - it's now complaining about your commit subject length: |
140f1cf
to
a78f5e5
Compare
This test failure doesn't make any sense. The commit subject it's complaining about doesn't seem to be present in the branch. |
The second line of a git commit must be empty. @thephoenixofthevoid please insert an empty line between |
a78f5e5
to
f7d223a
Compare
Oh, no, it failed again. |
Ah, this one's simple. Just need to rebase against latest master - it's a known test failure due to timezone change that we've fixed already. |
d811785
to
f7d223a
Compare
f7d223a
to
af91f27
Compare
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: mheon, thephoenixofthevoid The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
@thephoenixofthevoid Did you mean to close? |
No. It happened as a result of rebase automatically. |
Hm. Git is saying that there are 0 new commits - I think your new commit got lost somehow? |
Luckly, I have patch files, and will recreate everything. |
That was completely unexpected, that github closes PR if by chance/by mistake commits get excluded from branch. |
According to #9650 there are few issues when using volume plugins with rootless containers.
The reason behind these is local-driver-specific code being executed for all cases. This is a minimal fix to address these issues.
Please also note that:
podman/libpod/runtime_volume_linux.go
Lines 66 to 77 in d92b946