-
Notifications
You must be signed in to change notification settings - Fork 177
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
remove vendoring, use Go modules by default #548
Conversation
hi @jaypipes , can you please rebase and run
|
@zeeke np, all done. |
The linters are not happy can you please take a look? |
Removes the vendor/ directory and all vestiges of life before Go modules. Also updates pkg/utils/testing.go to properly account for non-RHEL systems, which typically store the pci.ids file at /usr/share/misc/pci.ids instead of /usr/share/hwdata/pci.ids. Issue k8snetworkplumbingwg#544 Signed-off-by: Jay Pipes <[email protected]>
@SchSeba apologies for the long delay in getting back to this! Rebased from main which should fix any linter failures. |
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
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
Removes the vendor/ directory and all vestiges of life before Go modules.
Also updates pkg/utils/testing.go to properly account for non-RHEL
systems, which typically store the pci.ids file at
/usr/share/misc/pci.ids instead of /usr/share/hwdata/pci.ids.
Addresses golint warnings around grpc.DialContext being deprecated by
replacing calls with grpc.NewClient.
Issue #544