-
Notifications
You must be signed in to change notification settings - Fork 819
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
update client-go for kubernetes-1.14.10 #1404
Conversation
/assign @roberthbailey |
Build Succeeded 👏 Build Id: 80a4caf9-f10f-43f0-8a24-c8bdd5e871d8 The following development artifacts have been built, and will exist for the next 30 days:
A preview of the website (the last 30 builds are retained): To install this version:
|
Thanks for this update! I have just noticed when I do
Let me know if someone also see this. Could be issue with my local setup.
|
I have done go clean -modcache; go mod tidy; go mod verify; and go mod vendor and I am not seeing the same diff, here is my go.mod file:
|
@aLekSer I am not sure what is causing the difference. Did you have changes in the client you did the diff from? |
@heartrobotninja I will double check this on a clean environment (fresh clone) |
This might be related to this ticket: |
sdks/nodejs/package-lock.json
Outdated
@@ -1,6 +1,6 @@ | |||
{ | |||
"name": "@google-cloud/agones-sdk", | |||
"version": "1.3.0", |
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.
@markmandel We may need to add a step to the process for publishing to prevent this file getting modified later as seen here and in other reviews. Here's what we do internally:
- Increment version in package.json
- Run
npm i
which will also update package-lock.json - Run
npm publish
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 we should revert the changes to this file in this PR and update nodejs dependencies independently of client-go dependencies.
/assign @aLekSer |
@heartrobotninja - I took a look and other than the comment from @steven-supersolid I think we just need to resolve the delta between what you and @aLekSer are seeing in go.mod to get this merged. |
I found an issue that caused part of the diff:
This line only left:
|
@heartrobotninja I approve all other changes, but
|
Ok it turns out I was using go-1.12.4. Updated and re-ran go mod tidy/verify/vendor and rebased on most current googleforgames/agones master. |
Build Failed 😱 Build Id: 2cfc90ba-a25b-4001-a21a-d0c7e5ab4cdc To get permission to view the Cloud Build view, join the agones-discuss Google Group. |
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.
Thanks @heartrobotninja now we would not have issues with vendor_fixes.
|
I'm going to re-run the test to see if this is a flake or not. |
Build Succeeded 👏 Build Id: a4be0fed-b8d5-4a5d-8427-bf091ca2000f The following development artifacts have been built, and will exist for the next 30 days:
A preview of the website (the last 30 builds are retained): To install this version:
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: aLekSer, heartrobotninja, roberthbailey 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 |
xref #1329 |
* update client-go for kubernetes-1.14.10 * Update go.mod using go 1.13.8
Update client-go
Remove vendor-fixes 🎉
Fix metric definitions to coincide with client-go update.