-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Go Upgrades #9512
Go Upgrades #9512
Conversation
cc @renzodavid9 as discussed |
Summary: go.mod and go.sum upgrades Test Plan: Tests and fixes in later commits.
Summary: go.mod/go.sum tidy after upgrade Test Plan: Tests and fixes in later commits
Summary: Docker API has changed Test Plan: Test when full project compiles
Summary: Docker API has changed Test Plan: Test when full project compiles
Summary: Thread a context down to where an API change requires it Test Plan: Test when the full project compiles.
…e.go to match updated moby/buildkit API
@renzodavid9 updated now that I figured out the github commit size issue. This may be worth reviewing with your teammate regardless of the ssh issue, as updating dependencies is probably a good idea overall. Do note the one fix that is in vendor/. |
…ng an SSH DOCKER_HOST Summary: Fixes GoogleContainerTools#9484 Test Plan: Tested skaffold over a ssh connection to minikube. This was tested with and without GoogleContainerTools#9512 in place.
Hi @aran, I'm not sure what discussions you had with Renzo about this, and he's away for a bit, so I can't ask him at the moment... but this PR is 400,000 lines (!!). Even if you don't include the changes from I appreciate all the work you did fixing build breakages from the library upgrades, but it's going to be very difficult to review a PR this large. Could you maybe split it into a single PR for each dependency or something? Or at least a few at a time instead of literally all of them at once? Thanks for your help with this! |
I think skaffold's go deps have not been upgraded in a long time, so they pile up. I'm not sure what review tooling you use, but the way to look at this is at the commit level, not the overall PR. The git commit messages describe the commits as accurately as possible. I don't have a way to certify that the commits contain what the messages say they contain, so you may prefer to have a trusted maintainer re-do the commands. There's basically a division of three conceptual sets of commits here. 1/ directly committing the results of 'go' commands, with no other changes:
These are labeled Some of the skaffold code does not work with the newer version of the deps, so then there is 2/ fixes to skaffold to use the latest APIs from the updated Go deps. These commits are labeled 'fix:', except that it looks like I missed one ("Create a logger for buildpacks build") 3/ The last commit is a fix to a vendored dep (buildpacks), which itself was out of date with the others. This would ideally be done upstream. I think it might be another Google project, so maybe you have resources I don't have to get that done upstream? Alternatively, the fix in the vendor folder is simple. I don't have bandwidth or suitable tooling to automate breaking this down much further. To tell you the truth I don't really think the outsider PR is ideal for something like this. You can decide that you trust me and land it, which is probably the easiest path forward, but overall would be better for a maintainer to do this kind of dep upgrade work in a trusted manner, and in that case the section 2/ and 3/ commits may be a useful time-saver. Or of course skaffold's deps can be left out of date and it'll be a while before something breaks. |
Thanks for the patient explanation, I really appreciate it. And yes, now I see how you helpfully broke all this down into individual steps, I didn't understand the process, but that makes a lot of sense. And, as is probably clear, I definitely didn't realize how vendored deps worked, now I understand why this is 400K lines 😁 Unfortunately, now I've gone and created a bunch of merge conflicts for you by merging some dependabot PRs.
Yeah, I think that's a great point. I think I will go ahead and do a series of PRs to get all these dependencies updated. I'll base it heavily on your work here, so I really appreciate you taking the time to put this all together! |
I'm curious, what's this ssh issue? |
Description
As discussed in office hours, draft PR showing go dependency upgrades.