-
Notifications
You must be signed in to change notification settings - Fork 2.7k
[v5.3] Some backports for 5.3 #24495
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
Conversation
Add support for inspecting Mounts which include SubPaths. Handle SubPaths for kubernetes image volumes. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com> (cherry picked from commit 6346a11) Signed-off-by: Paul Holzinger <pholzing@redhat.com>
If volume ls was called while another volume was removed at the right time it could have failed with "no such volume" as we did not ignore such error during listing. As we list things and this no longer exists the correct thing is to ignore the error and continue like we do with containers, pods, etc... This was pretty easy to reproduce with these two commands running in different terminals: while :; do bin/podman volume create test && bin/podman volume rm test || break; done while :; do bin/podman volume ls || break ; done I have a slight feeling that this might solve containers#23913 but I am not to sure there so I am not adding a Fixes here. Signed-off-by: Paul Holzinger <pholzing@redhat.com> (cherry picked from commit 9a0c0b2) Signed-off-by: Paul Holzinger <pholzing@redhat.com>
Signed-off-by: Ed Santiago <santiago@redhat.com> (cherry picked from commit ba5ce49) Signed-off-by: Paul Holzinger <pholzing@redhat.com>
Signed-off-by: Paul Holzinger <pholzing@redhat.com> (cherry picked from commit f6af35c) Signed-off-by: Paul Holzinger <pholzing@redhat.com>
Regression test for containers#23550. Setting the TZDIR env should make no difference for the local timezone as this is not a real timezone name that is resolved from that directory. Signed-off-by: Paul Holzinger <pholzing@redhat.com> (cherry picked from commit fb3a0e9) Signed-off-by: Paul Holzinger <pholzing@redhat.com>
Added in containers/buildah#5783 Signed-off-by: Paul Holzinger <pholzing@redhat.com> (cherry picked from commit 22152a2) Signed-off-by: Paul Holzinger <pholzing@redhat.com>
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: Luap99 The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
@mheon PTAL, this should make the 5.3 branch ready for the final vendor + two other small fixes |
/lgtm |
d88d04e
into
containers:v5.3
Backports of
#24473
#24479
#24485
#24447
We will need the new CI images for the vendor part. This is also not the final vendor but at least we will know that the recent main vendor passes CI on the 5.3 branch.
Does this PR introduce a user-facing change?