-
Notifications
You must be signed in to change notification settings - Fork 638
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 heapster from project dependencies #756
Conversation
/assign @Random-Liu |
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 started with an upgrade effort, but I agree cleaning individual dependencies might be easier. Just a small comment. Thanks for your PR!
@@ -68,7 +67,7 @@ func NewClientOrDie(npdo *options.NodeProblemDetectorOptions) Client { | |||
// we have checked it is a valid URI after command line argument is parsed.:) | |||
uri, _ := url.Parse(npdo.ApiServerOverride) | |||
|
|||
cfg, err := kubernetes.GetKubeClientConfig(uri) | |||
cfg, err := GetKubeClientConfig(uri) |
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.
Since this is now a function from the package, could we make it package private?
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.
updated. Thanks!
/lgtm Thanks for your contribution! |
/assign @Random-Liu |
/assign dchen1107 |
/assign @vteratipally |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: MartinForReal, mmiranda96, vteratipally 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 |
Remove heapster from project dependencies because it has been retired.
it will make it easier to bump k8s.io dependencies.
We've found that the client-go library doesn't share transport among different clients. And we may need to bump the dependencies to resolve this issue.