-
Notifications
You must be signed in to change notification settings - Fork 40.3k
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-gen: stop embedding of GroupVersion client intfs #49370
client-gen: stop embedding of GroupVersion client intfs #49370
Conversation
+100 for this PR:) |
cmd/kubelet/app/server.go
Outdated
if err != nil { | ||
glog.Warningf("Failed to create API Server client: %v", err) | ||
} | ||
eventClient = client.CoreV1() |
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.
This will panic with npe?
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.
fixed
4cc82f7
to
75480ba
Compare
cmd/kube-proxy/app/server.go
Outdated
@@ -413,7 +413,13 @@ func createClients(config componentconfig.ClientConnectionConfiguration, masterO | |||
return nil, nil, err | |||
} | |||
|
|||
<<<<<<< HEAD |
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.
rebase conflicts...
fbec1f8
to
df0e32a
Compare
df0e32a
to
60a3e18
Compare
c6a19f3
to
9f0f253
Compare
Could you make a release note since it's a non-compatibility change? |
@@ -69,8 +69,15 @@ func (g *genClientset) GenerateType(c *generator.Context, t *types.Type, w io.Wr | |||
// perhaps we can adapt the go2ild framework to this kind of usage. | |||
sw := generator.NewSnippetWriter(w, c, "$", "$") | |||
|
|||
allGroups := clientgentypes.ToGroupVersionPackages(g.groups) | |||
type groupArg struct { |
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.
Could you just add LowerCaseGroupVersion
to GroupVersionPackage
and update ToGroupVersionPackages
? It seems only client-gen uses them.
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.
@sttts how about this comment?
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.
fixed
76b4988
to
3ccdb54
Compare
3ccdb54
to
0162eca
Compare
/retest Review the full test history for this PR. |
7 similar comments
/retest Review the full test history for this PR. |
/retest Review the full test history for this PR. |
/retest Review the full test history for this PR. |
/retest Review the full test history for this PR. |
/retest Review the full test history for this PR. |
/retest Review the full test history for this PR. |
/retest Review the full test history for this PR. |
0162eca
to
3b310d8
Compare
/retest |
/test all [submit-queue is verifying that this PR is safe to merge] |
Automatic merge from submit-queue (batch tested with PRs 49370, 49481) |
@sttts: The following test failed, say
Full PR test history. Your PR dashboard. Please help us cut down on flakes by linking to an open issue when you hit one in your PR. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. I understand the commands that are listed here. |
It is undefined (or at least uncontrollable) which methods of the clientset apigroup
interfaces are actually inherited. Moreover, there might be nameconflicts between the
accessors and inherited methods. This PR removes the embedding to make it unambiguous.