-
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
move cached_discovery to client-go/discovery #63550
move cached_discovery to client-go/discovery #63550
Conversation
a314732
to
ef7b7bf
Compare
ef7b7bf
to
28a8021
Compare
28a8021
to
e036f67
Compare
@@ -194,3 +200,76 @@ func TestKindFor(t *testing.T) { | |||
} | |||
} | |||
} | |||
|
|||
type fakeDiscoveryClient struct { | |||
groupCalls int |
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.
slim down to what is actually needed.
@juanvallejo someone was working on a real fake discovery client. We need to find that pull again.
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.
@@ -30,15 +30,14 @@ import ( | |||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | |||
"k8s.io/apimachinery/pkg/runtime" | |||
"k8s.io/apimachinery/pkg/version" | |||
"k8s.io/client-go/discovery" | |||
restclient "k8s.io/client-go/rest" | |||
"k8s.io/kubernetes/pkg/kubectl/scheme" |
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.
You may not have this dependency in client-go. nothing from kube/kube
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.
Switched to k8s.io/client-go/kubernetes/scheme
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.
witched to k8s.io/client-go/kubernetes/scheme
What is it used for? I expected you to create your own scheme locally like our other clients do.
I'm 95% sure you need the associated transport and that your external constructor needs to wrap the entire thing. |
e036f67
to
bba674c
Compare
bba674c
to
da5ca88
Compare
da5ca88
to
ec57ab0
Compare
ec57ab0
to
e4a6d04
Compare
I still don't see the transport |
e4a6d04
to
237d7f1
Compare
90131dd
to
caa31e0
Compare
319f5d8
to
e3a82b4
Compare
pkg/kubectl/cmd/util/config_flags.go
Outdated
} | ||
|
||
discoveryCacheDir := computeDiscoverCacheDir(filepath.Join(homedir.HomeDir(), ".kube", "cache", "discovery"), config.Host) | ||
return discovery.NewCachedDiscoveryClientForConfig(config, discoveryCacheDir, httpCacheDir, time.Duration(10*time.Minute)) |
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.
You eventually went with double cache options? Any particular reason?
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.
You eventually went with double cache options? Any particular reason?
Per our conversation, I thought about this a bit further and decided that it might be best to add any changes in behavior in a separate PR explicitly for doing so.
Per @deads2k 's comments below, will add a godoc explaining the current behavior
@@ -1380,3 +1418,76 @@ func TestMultipleTypesRequested(t *testing.T) { | |||
} | |||
} | |||
} | |||
|
|||
type fakeDiscoveryClient 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.
this looks like it should be deleted.
// NewCachedDiscoveryClientForConfig creates a new DiscoveryClient for the given config, and wraps | ||
// the created client in a CachedDiscoveryClient. The provided configuration is upddated with a | ||
// custom transport that understands cache responses. | ||
func NewCachedDiscoveryClientForConfig(config *restclient.Config, discoveryCacheDir, httpCacheDir string, ttl time.Duration) (*CachedDiscoveryClient, error) { |
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.
Document why we have two cache dirs, even if it is just historical with a TODO to figure out how to stop having two.
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.
and doc behavior on empty
3f86e26
to
d6c4009
Compare
@deads2k thanks, comments addressed |
/retest |
/lgtm |
metrics change is a generated file based on client needs. |
d6c4009
to
57f308a
Compare
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.
/lgtm
[APPROVALNOTIFIER] This PR is APPROVED Approval requirements bypassed by manually added approval. This pull-request has been approved by: deads2k, juanvallejo, soltysh 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 |
/test pull-kubernetes-e2e-gce |
/test all [submit-queue is verifying that this PR is safe to merge] |
Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions here. |
…-genericclioptions Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. move config flags to pkg/kubectl/genericclioptions **Release note**: ```release-note NONE ``` Moves ConfigFlags to `pkg/kubectl/genericclioptions` ~~Depends on #63550 cc @soltysh @deads2k
Release note:
Moves the cmd/util CachedDiscoveryClient to client-go
cc @soltysh @deads2k