-
Notifications
You must be signed in to change notification settings - Fork 148
update client go to the latest version #490
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,10 +10,10 @@ require ( | |
| golang.org/x/oauth2 v0.25.0 // indirect | ||
| golang.org/x/term v0.28.0 // indirect | ||
| google.golang.org/grpc v1.69.2 | ||
| k8s.io/api v0.32.2 | ||
| k8s.io/apimachinery v0.32.2 | ||
| k8s.io/api v0.32.3 | ||
| k8s.io/apimachinery v0.32.3 | ||
| k8s.io/apiserver v0.32.0 | ||
| k8s.io/client-go v1.5.2 | ||
| k8s.io/client-go v0.32.3 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The client-go version is overridden by L84, so this change theoretically shouldn't do anything There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @msau42 is there a reason to keep L84 around or could we remove that ? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
I think it's better to remove replace in go.mod if not necessary? Actually, I found this issue on CSI AIO testing. And this could affect users relying on this repository. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I removed the replace on L84 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think we should just remove all the replace statements. We only need them if we import |
||
| k8s.io/component-base v0.32.0 | ||
| k8s.io/csi-translation-lib v0.32.2 | ||
| k8s.io/klog/v2 v2.130.1 | ||
|
|
@@ -74,17 +74,3 @@ require ( | |
| sigs.k8s.io/structured-merge-diff/v4 v4.5.0 // indirect | ||
| sigs.k8s.io/yaml v1.4.0 // indirect | ||
| ) | ||
|
|
||
| replace k8s.io/api => k8s.io/api v0.32.0 | ||
|
|
||
| replace k8s.io/apimachinery => k8s.io/apimachinery v0.32.0 | ||
|
|
||
| replace k8s.io/apiserver => k8s.io/apiserver v0.32.0 | ||
|
|
||
| replace k8s.io/client-go => k8s.io/client-go v0.32.0 | ||
|
|
||
| replace k8s.io/component-base => k8s.io/component-base v0.32.0 | ||
|
|
||
| replace k8s.io/csi-translation-lib => k8s.io/csi-translation-lib v0.32.2 | ||
|
|
||
| replace k8s.io/kms => k8s.io/kms v0.32.0 | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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 it is strange that these 3 indirect requires are not in the block below. Maybe we can take the chance to fix this too.
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.
It's doesn't match the issue, We can fix it individually