Skip to content
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

Closed
wants to merge 42 commits into from
Closed

Go Upgrades #9512

wants to merge 42 commits into from

Conversation

aran
Copy link
Contributor

@aran aran commented Aug 28, 2024

Description
As discussed in office hours, draft PR showing go dependency upgrades.

  • Many dependencies have published breaking changes so tests and fixes are needed in Skaffold. These are at the top of the stack.
  • The commit containing the result of 'go mod vendor' is too large for me to push to Github. I hit HTTP 400 errors. This has been broken up into many smaller commits to fit under the github limits.

@aran
Copy link
Contributor Author

aran commented Aug 28, 2024

cc @renzodavid9 as discussed

aran added 28 commits September 7, 2024 19:56
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
@aran
Copy link
Contributor Author

aran commented Sep 8, 2024

@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/.

aran added a commit to aran/skaffold that referenced this pull request Sep 8, 2024
…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.
plumpy pushed a commit that referenced this pull request Nov 8, 2024
…ng an SSH DOCKER_HOST (#9521)

Summary: Fixes #9484

Test Plan: Tested skaffold over a ssh connection to minikube.

This was tested with and without #9512 in place.
@plumpy
Copy link
Collaborator

plumpy commented Nov 12, 2024

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 go mod vendor, this is still a huge CL with a lot of unrelated changes.

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!

@aran
Copy link
Contributor Author

aran commented Nov 14, 2024

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:

  • go get -u ./...
  • go mod tidy
  • go mod vendor

These are labeled chore:. The issue is that the result of go mod vendor exceeds the maximum commit size allowed by github. I broke it up into dozens of smaller commits, partly by trial-and-error, to get each commit under github's limit. These are organized alphabetically by dep name.

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.

@plumpy
Copy link
Collaborator

plumpy commented Nov 15, 2024

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.

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.

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!

@plumpy
Copy link
Collaborator

plumpy commented Nov 15, 2024

This may be worth reviewing with your teammate regardless of the ssh issue

I'm curious, what's this ssh issue?

@aran
Copy link
Contributor Author

aran commented Nov 15, 2024

@plumpy the ssh issue was #9521 / #9484, thank you for merging that PR!

I'll close this out since you have another plan now.

@aran aran closed this Nov 15, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants