Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type GenericClusterInformer ¶
type GenericClusterInformer interface { Cluster(logicalcluster.Name) GenericInformer Informer() kcpcache.ScopeableSharedIndexInformer Lister() kcpcache.GenericClusterLister }
type GenericInformer ¶
type GenericInformer interface { Informer() cache.SharedIndexInformer Lister() cache.GenericLister }
type ScopedDynamicSharedInformerFactory ¶
type ScopedDynamicSharedInformerFactory interface {}
type SharedInformerFactory ¶
type SharedInformerFactory interface { internalinterfaces.SharedInformerFactory }
SharedInformerFactory provides shared informers for resources in all known API group versions.
func NewSharedInformerFactory ¶
func NewSharedInformerFactory(client clientset.ClusterInterface, defaultResync time.Duration) SharedInformerFactory
NewSharedInformerFactory constructs a new instance of SharedInformerFactory for all namespaces.
func NewSharedInformerFactoryWithOptions ¶
func NewSharedInformerFactoryWithOptions(client clientset.ClusterInterface, defaultResync time.Duration, options ...SharedInformerOption) SharedInformerFactory
NewSharedInformerFactoryWithOptions constructs a new instance of a SharedInformerFactory with additional options.
type SharedInformerOption ¶
type SharedInformerOption func(*SharedInformerOptions) *SharedInformerOptions
SharedInformerOption defines the functional option type for SharedInformerFactory.
func WithCustomResyncConfig ¶
func WithCustomResyncConfig(resyncConfig map[metav1.Object]time.Duration) SharedInformerOption
WithCustomResyncConfig sets a custom resync period for the specified informer types.
func WithNamespace ¶
func WithNamespace(namespace string) SharedInformerOption
WithNamespace limits the SharedInformerFactory to the specified namespace.
func WithTweakListOptions ¶
func WithTweakListOptions(tweakListOptions internalinterfaces.TweakListOptionsFunc) SharedInformerOption
WithTweakListOptions sets a custom filter on all listers of the configured SharedInformerFactory.
type SharedInformerOptions ¶
type SharedInformerOptions struct {
// contains filtered or unexported fields
}
type SharedScopedInformerFactory ¶
type SharedScopedInformerFactory interface { internalinterfaces.SharedScopedInformerFactory }
SharedScopedInformerFactory provides shared informers for resources in all known API group versions, scoped to one workspace.
func NewSharedScopedInformerFactory ¶
func NewSharedScopedInformerFactory(client scopedclientset.Interface, defaultResync time.Duration, namespace string) SharedScopedInformerFactory
NewSharedScopedInformerFactory constructs a new instance of SharedInformerFactory for some or all namespaces.
func NewSharedScopedInformerFactoryWithOptions ¶
func NewSharedScopedInformerFactoryWithOptions(client scopedclientset.Interface, defaultResync time.Duration, options ...SharedInformerOption) SharedScopedInformerFactory
NewSharedScopedInformerFactoryWithOptions constructs a new instance of a SharedInformerFactory with additional options.