-
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
fix pod volume passing and alter infra inheritance #13594
Conversation
7106bcb
to
48642ab
Compare
@containers/podman-maintainers PTAL. This is a pretty substantial bug fix as pod volumes seem to have been broken for some time. |
Cause of errors seems to be https://github.com/containers/podman/blob/main/test/apiv2/40-pods.at#L88 which is pulling from docker.io @edsantiago @cevich PTAL - is there anything in the APIv2 tests preventing pulls from docker.io? Because that test has been there for 2 years, seemingly, and I'm amazed it only now started blowing up with rate-limiting errors |
@mheon I think we have some magic doohickey that masquerades docker.io, using quay.io instead. I can't remember the details. However, instead of looking them up, I do note that the error I see is:
...which is a 500, not the usual "rate limit blah blah". And, looking at the full log, I see another 500 error, this time very clearly quay.io. This looks like a quay flake to me. (No point in pressing Re-run, though, because of so many other errors in this CI run) |
Yes, see |
de569a9
to
aa5cac8
Compare
@containers/podman-maintainers PTAL |
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.
LGTM other then a Nit/
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: cdoern, rhatdan 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 |
alright, I will go back and redo the mounts tonight |
Rebase should fix the tests |
the infra Inherit function was not properly passing pod volume information to new containers alter the inherit function and struct to use the new `ConfigToSpec` function used in clone pick and choose the proper entities from a temp spec and validate them on the spegen side rather than passing directly to a config resolves containers#13548 Signed-off-by: cdoern <[email protected]> Signed-off-by: cdoern <[email protected]> Signed-off-by: cdoern <[email protected]>
@containers/podman-maintainers PTAL |
LGTM |
/lgtm |
the infra Inherit function was not properly passing pod volume information to new containers. alter the inherit function and struct to use the new
ConfigToSpec
function used in clone pick and choose the proper entities from a temp spec and validate them on the spegen side rather than passing directly to a configresolves #13548
Signed-off-by: cdoern [email protected]