Skip to content
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-go: factor the dynamic client similarly to others #112774

Merged

Conversation

stevekuznetsov
Copy link
Contributor

All other clients:

  • expose a New() method that takes a rest.Interface
  • expose their RESTClient()
  • return pointers to the type, not instances of an interface that the type implements

For code that is generic over all Kubernetes clients, and for general developer experience, it's best to make sure that this client adheres to these common practices.

Signed-off-by: Steve Kuznetsov skuznets@redhat.com

/kind cleanup
/sig cli

NONE

/cc @liggitt @aojea

@k8s-ci-robot k8s-ci-robot added release-note-none Denotes a PR that doesn't merit a release note. kind/cleanup Categorizes issue or PR as related to cleaning up code, process, or technical debt. size/S Denotes a PR that changes 10-29 lines, ignoring generated files. sig/cli Categorizes an issue or PR as relevant to SIG CLI. cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. needs-triage Indicates an issue or PR lacks a `triage/foo` label and requires one. needs-priority Indicates a PR lacks a `priority/foo` label and requires one. sig/api-machinery Categorizes an issue or PR as relevant to SIG API Machinery. labels Sep 28, 2022
@stevekuznetsov
Copy link
Contributor Author

cc @ncdc

type dynamicClient struct {
client *rest.RESTClient
type DynamicClient struct {
client rest.Interface
Copy link
Member

@liggitt liggitt Sep 28, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

+1 on switching this to an interface (and I think +1 on having a constructor that can construct a dynamic client passing in a rest.Interface... though I haven't thought through the use there a lot)

All other clients:

 - expose a New() method that takes a rest.Interface
 - expose their RESTClient()
 - return pointers to the type, not instances of an interface that the
   type implements

For code that is generic over all Kubernetes clients, and for general
developer experience, it's best to make sure that this client adheres to
these common practices.

Signed-off-by: Steve Kuznetsov <skuznets@redhat.com>
@stevekuznetsov
Copy link
Contributor Author

@liggitt thanks for the review - updated

@aojea
Copy link
Member

aojea commented Sep 28, 2022

I didn't check if there is other consequences, but this looks consistent with the generated clients, and sounds like the right thing to do

@stevekuznetsov
Copy link
Contributor Author

Existing users would have had to write code expecting dynamic.Interface, so returning *dynamic.DynamicClient can't be breaking.

@liggitt
Copy link
Member

liggitt commented Sep 28, 2022

I like the constructor that passes in rest.Interface, I'm less clear on the benefits of changing the return type of the existing constructor and exporting the type

@stevekuznetsov
Copy link
Contributor Author

As noted in the commit body - the generated code is ripe for the use of Go generics. When one client of all of them looks different, writing abstractions around them becomes hard. Specifically here, allocating for a struct pointer vs an interface gets hairy, etc. I'll maybe flip the question back around: why should this client (and its' constructors) be special and different?

@aojea
Copy link
Member

aojea commented Sep 29, 2022

I can't see that this can break, are we 100% sure?
is correctness enough motivation to change it?
this is widely used https://grep.app/search?q=dynamic.NewForConfig

@stevekuznetsov
Copy link
Contributor Author

Today, the library returns the interface. With the change, the library returns a struct pointer that implements the interface. Since no concrete type was returned in the past, users could only assert that the return type was the interface, or some subset of the interface. Returning the concrete type cannot impact this, as the type implements all possible interfaces that users could have written.

@ncdc
Copy link
Member

ncdc commented Sep 29, 2022

Returning the concrete type is also a suggested practice (https://github.com/golang/go/wiki/CodeReviewComments#interfaces). If there is any fallout to external consumers from this change, it is presumably a simple find-and-replace to correct all issues. I'm 👍 for this change.

@leilajal
Copy link
Contributor

/triage accepted

@k8s-ci-robot k8s-ci-robot added triage/accepted Indicates an issue or PR is ready to be actively worked on. and removed needs-triage Indicates an issue or PR lacks a `triage/foo` label and requires one. labels Sep 29, 2022
@stevekuznetsov
Copy link
Contributor Author

@liggitt any other thoughts?

@liggitt
Copy link
Member

liggitt commented Oct 10, 2022

yeah, this lgtm now

@liggitt
Copy link
Member

liggitt commented Oct 10, 2022

/lgtm
/approve

@k8s-ci-robot k8s-ci-robot added the lgtm "Looks good to me", indicates that a PR is ready to be merged. label Oct 10, 2022
@k8s-ci-robot
Copy link
Contributor

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: liggitt, stevekuznetsov

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 /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@k8s-ci-robot k8s-ci-robot added the approved Indicates a PR has been approved by an approver from all required OWNERS files. label Oct 10, 2022
@k8s-triage-robot
Copy link

The Kubernetes project has merge-blocking tests that are currently too flaky to consistently pass.

This bot retests PRs for certain kubernetes repos according to the following rules:

  • The PR does have any do-not-merge/* labels
  • The PR does not have the needs-ok-to-test label
  • The PR is mergeable (does not have a needs-rebase label)
  • The PR is approved (has cncf-cla: yes, lgtm, approved labels)
  • The PR is failing tests required for merge

You can:

/retest

@k8s-ci-robot k8s-ci-robot merged commit bb2101b into kubernetes:master Oct 10, 2022
@k8s-ci-robot k8s-ci-robot added this to the v1.26 milestone Oct 10, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
approved Indicates a PR has been approved by an approver from all required OWNERS files. cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. kind/cleanup Categorizes issue or PR as related to cleaning up code, process, or technical debt. lgtm "Looks good to me", indicates that a PR is ready to be merged. needs-priority Indicates a PR lacks a `priority/foo` label and requires one. release-note-none Denotes a PR that doesn't merit a release note. sig/api-machinery Categorizes an issue or PR as relevant to SIG API Machinery. sig/cli Categorizes an issue or PR as relevant to SIG CLI. size/S Denotes a PR that changes 10-29 lines, ignoring generated files. triage/accepted Indicates an issue or PR is ready to be actively worked on.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

7 participants