-
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
code-gen: allow specifying custom resync periods for certain informer types #61400
Conversation
/assign @wojtek-t |
/ok-to-test |
/retest |
/retest |
/cc @sttts |
} | ||
|
||
// NewFilteredSharedInformerFactory constructs a new instance of sharedInformerFactory. | ||
// Listers obtained via this SharedInformerFactory will be subject to the same filters | ||
// as specified here. | ||
func NewFilteredSharedInformerFactory(client versioned.Interface, defaultResync time.Duration, namespace string, tweakListOptions internalinterfaces.TweakListOptionsFunc) SharedInformerFactory { | ||
func NewFilteredSharedInformerFactory(client versioned.Interface, defaultResync time.Duration, namespace string, tweakListOptions internalinterfaces.TweakListOptionsFunc, |
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.
why does NewFilteredSharedInformerFactory
get the resyncConfig
param, but NewSharedInformerFactory
doesn't?
Instead of adding more args, we should switch to another extension pattern, maybe informer.WithCustomResyncs
.
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.
Adding the parameter to NewSharedInformerFactory
would cause a huge refactor accross the Kubernetes code-base, because all consumers of this package exclusivley use this method to instantiate a new factory.
Changing the arguments of NewFilteredSharedInformerFactory
does not break any existing functionality as it is not used verbatim. So this seemed like a natural fit as it also already incorporates custom list options.
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.
What I wanted to say is that adding another param is the wrong pattern.
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.
Ok, so you would suggest adding a seperate method e.g. NewSharedInformerFactoryWithCustomResync
instead?
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.
No. Rather I would prefer some functional style pattern:
NewSharedInformerFactory(...).WithTweakListOptions(...).WithCustomResyncConfig(...)
.
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.
Refactored accordingly.
Thanks for your pull request. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). 📝 Please follow instructions at https://git.k8s.io/community/CLA.md#the-contributor-license-agreement to sign the CLA. It may take a couple minutes for the CLA signature to be fully registered; after that, please reply here with a new comment and we'll verify. Thanks.
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. |
func NewFilteredSharedInformerFactory(client internalclientset.Interface, defaultResync time.Duration, namespace string, tweakListOptions internalinterfaces.TweakListOptionsFunc) SharedInformerFactory { | ||
return &sharedInformerFactory{ | ||
// NewFilteredSharedInformerFactory constructs a new instance of sharedInformerFactory contained to the specified namespace with additional options. | ||
func NewFilteredSharedInformerFactory(client internalclientset.Interface, defaultResync time.Duration, namespace string, options ...SharedInformerOption) SharedInformerFactory { |
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.
we have to leave the old func and reimplement it with NewInformerFactoryWithOptions
.
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.
Disregard my previous comment. it's compatible. But still, I would not add the options here. Instead I would even deprecate it in favor of the generic other variant with options.
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.
As NewFilteredSharedInformerFactory
is not used anywhere I deleted it and introdued NewSharedInformerFactoryWithOptions
.
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 used by 3rdparties. Would leave it and just deprecate it.
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.
Done.
@@ -44,36 +44,63 @@ import ( | |||
storage "k8s.io/kubernetes/pkg/client/informers/informers_generated/internalversion/storage" | |||
) | |||
|
|||
type ResyncConfiguration map[v1.Object]time.Duration |
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.
do we really need a ResyncConfiguration
type? Sounds "over-abstracted".
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.
Good catch, removed it.
pkg/generated/bindata.go
Outdated
@@ -13651,7 +13651,7 @@ msgstr "Imposta il current-context in un file kubeconfig" | |||
|
|||
#: pkg/kubectl/cmd/describe.go:86 | |||
msgid "Show details of a specific resource or group of resources" | |||
msgstr "Mostra i dettagli di una specifiche risorsa o un gruppo di risorse" | |||
msgstr "Mostra i dettagli di una specifica risorsa o un gruppo di risorse" |
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.
unexpected change. Make it another commit at least if this fix is right.
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 was not intended. I think it was caused by running update-codegen.sh against the current master.
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.
Do we have a spell checker included now? :)
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.
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.
Wow. Anyway, saw the same issue. The checked in bindata is broken it seems.
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.
Separated it in another commit.
75e85e5
to
5025e4a
Compare
} | ||
|
||
// NewSharedInformerFactoryWithOptions constructs a new instance of a SharedInformerFactory with additional options. | ||
func NewSharedInformerFactoryWithOptions(client internalclientset.Interface, defaultResync time.Duration, options ...SharedInformerOption) SharedInformerFactory { |
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.
While not exactly the same type, this is compatible with NewSharedInformerFactory
calls. It might be worth to merge those two again. I think the chance is high that nobody passes around constructors such that this change will make any trouble.
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 agree that compatibility is probably not an issue here, but I actually prefer having a separate method for passing the options. It is more verbose and immediately clear to the caller that this method accepts additional options.
/cc @caesarxuchao @ncdc any opinion about this style? I like this much more than adding more and more constructors. This pattern is much more idiomatic. |
Style is great. Let's do this! |
@@ -98,36 +99,78 @@ func (g *factoryGenerator) GenerateType(c *generator.Context, t *types.Type, w i | |||
} | |||
|
|||
var sharedInformerFactoryStruct = ` | |||
type SharedInformerOption func(*sharedInformerFactory) *sharedInformerFactory |
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.
Add godoc?
|
||
informers map[{{.reflectType|raw}}]{{.cacheSharedIndexInformer|raw}} | ||
// startedInformers is used for tracking which informers have been started. | ||
// This allows Start() to be called multiple times safely. | ||
startedInformers map[{{.reflectType|raw}}]bool | ||
} | ||
|
||
// NewSharedInformerFactory constructs a new instance of sharedInformerFactory | ||
// Sets a custom resync period for the specified informer types. |
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.
Please use the function name as the beginning of the comment, i.e. // WithCustomResyncConfig sets a ...
} | ||
} | ||
|
||
// Sets a custom filter on all listers of the configured SharedInformerFactory. |
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.
Please use the function name as the beginning of the comment, i.e. // WithTweakListOptions sets a ...
} | ||
} | ||
|
||
// Limits the SharedInformerFactory to the specified namespace. |
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.
Please use the function name as the beginning of the comment, i.e. // WithNamespace limits the ...
@natronq thanks for this - I really like it. |
… types and switch to functional option pattern for SharedInformerFactory
@ncdc Refactored according to your comments. |
/retest |
/lgtm |
/approve |
/assign @deads2k for approval |
@ncdc: GitHub didn't allow me to assign the following users: for, approval. Note that only kubernetes members and repo collaborators can be assigned. In response to this:
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 dislike the style, but as long as the types remain private to make it impossible to write "trust me, I'm doing good things" functions I won't fight it. /approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: deads2k, natronq, ncdc, sttts 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 all [submit-queue is verifying that this PR is safe to merge] |
Automatic merge from submit-queue (batch tested with PRs 61400, 61048). If you want to cherry-pick this change to another branch, please follow the instructions here. |
@natronq: 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. |
What this PR does / why we need it:
This PR extends the informer code-generator to allow the consumer to specify a custom resync period for certain informer types and uses the default resync period if none is defined.
Special notes for your reviewer:
Example:
Release note: