-
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
vendor c/image #17405
vendor c/image #17405
Conversation
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: vrothberg 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 |
@edsantiago PTAL |
Handle a race condition in the REST API when listing networks. In between listing all containers and inspecting them, they may have already been removed, so handle this case gracefully. [NO NEW TESTS NEEDED] as it's a race condition. Fixes: containers#17341 Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
To fix the registry flakes we see in containers#17193 making c/image more tolerant toward unexpected EOFs from registries. Also pin docker/docker to v20.10.23+incompatible as it doesn't compile as imagebuilder needs to be fixed before. Fixes: containers#17193 Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
@containers/podman-maintainers PTAL We can thank @mtrmac afterwards for a greener (CI) future |
|
if errors.Is(err, define.ErrNoSuchCtr) || errors.Is(err, define.ErrCtrRemoved) { | ||
continue | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this commit sneaked in, it is already merged so could you please drop it.
github.com/titanous/rocacheck v0.0.0-20171023193734-afe73141d399 // indirect | ||
github.com/vbatts/tar-split v0.11.2 // indirect | ||
github.com/vbauerster/mpb/v8 v8.1.6 // indirect |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it would be good to include #17342 here to reduce bloat.
Alternatively, #17221 contains just the one change — but depends on having a discussion about adding it to the stable branch. |
Closing in favor of that. |
To fix the registry flakes we see in #17193 making c/image more tolerant
toward unexpected EOFs from registries.
Fixes: #17193
Signed-off-by: Valentin Rothberg vrothberg@redhat.com
Does this PR introduce a user-facing change?
@nalind I had to pin docker/docker as imagebuilder doesn't like the new code: