-
Notifications
You must be signed in to change notification settings - Fork 263
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
client dependencies to k8s.io/client-go #473
Comments
Yes, its an issue if transitive dependencies mismatch. The best solution is to update/downgrade the original dependencies so that there common transistive dependency align. In this case I suggest to update manually |
Thanks Roland. After testing for several times, I find the best appropriate versions for those dependencies:
I made these changes in my PR #470 |
I have to keep the current k8s libraries version because of a wired issue caused by Doc generation. |
…native#473) * Remove unnecessary bundling: serving and build, and build and istio. * Also disable waiting for build pods if build is no longer installed.
Co-authored-by: serverless-qe <[email protected]>
Ask your question here:
In client/go.mod, it is said:
Yet, Client has dependencies to knative.dev/pkg. The dependencies in
knative.dev/pkg
are defined asThe version of
k8s.io/client-go
used by client is older thanknative.dev/pkg
. It will cause problem when adding eventing dependencies. Do we need to manually change the dependency to k8s.io/client-go fromv0.0.0-20190226174127-78295b709ec6
tokubernetes-1.15.3
?The text was updated successfully, but these errors were encountered: