-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Enable parallel image pulls in kubelet #266
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
Enable parallel image pulls in kubelet #266
Conversation
|
/cc @sjenning @smarterclayton @eparis @rphillips dynamic kubelet config should always ensure we allow parallel image pulls. |
|
/lgtm |
|
|
/lgtm cancel |
|
/retest |
This sounds like moby/moby#37781. Maybe we're hitting that same issue via CRI-O? |
|
@wking Yes, it looks similar to what we fixed in our docker. projectatomic/docker#321. @mtrmac @runcom Can you take a look and see if we have the same issue in containers/image? |
Seems very unlikely to me; I can’t find the message in the CRI-O / c/{image,storage} repos at all. Also, the affected code in Moby is in the graph driver / reference store, which I don’t think was reused in the other projects; c/storage deals with names and references very differently. Is it possible that this error comes from a Docker process? |
wking
left a comment
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.
Is it possible that this error comes from a Docker process?
Maybe? I'd thought we'd been pure-CRI-O since #251 (landed 2018-09-04), but maybe something slipped through? Anyhow, we're green now and Docker is back out of RHCOS since openshift/os#290 (although we haven't bumped our AMI to pick that up). Anyone want to take a last look before I /lgtm?
|
/lgtm |
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: derekwaynecarr, wking The full list of commands accepted by this bot can be found here. The pull request process is described here DetailsNeeds approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Upstream disables parallel image pulls by default for backwards compatibility with storage drivers that have problems when this is enabled (devicemapper and aufs), but since we default to overlay, we should be able to run this without a problem.