import "kmodules.xyz/openshift/client/informers/externalversions"
type GenericInformer interface { Informer() cache.SharedIndexInformer Lister() cache.GenericLister }
GenericInformer is type of SharedIndexInformer which will locate and delegate to other sharedInformers based on type
type SharedInformerFactory interface { internalinterfaces.SharedInformerFactory (resource schema.GroupVersionResource) (GenericInformer, error) (stopCh <-chan struct{}) map[reflect.Type]bool () apps.Interface () security.Interface }
SharedInformerFactory provides shared informers for resources in all known API group versions.
func NewFilteredSharedInformerFactory(client versioned.Interface, defaultResync time.Duration, namespace string, tweakListOptions internalinterfaces.TweakListOptionsFunc) SharedInformerFactory
NewFilteredSharedInformerFactory constructs a new instance of sharedInformerFactory. Listers obtained via this SharedInformerFactory will be subject to the same filters as specified here. Deprecated: Please use NewSharedInformerFactoryWithOptions instead
func NewSharedInformerFactory(client versioned.Interface, defaultResync time.Duration) SharedInformerFactory
NewSharedInformerFactory constructs a new instance of sharedInformerFactory for all namespaces.
func NewSharedInformerFactoryWithOptions(client versioned.Interface, defaultResync time.Duration, options ...SharedInformerOption) SharedInformerFactory
NewSharedInformerFactoryWithOptions constructs a new instance of a SharedInformerFactory with additional options.
type SharedInformerOption func(*sharedInformerFactory) *sharedInformerFactory
SharedInformerOption defines the functional option type for SharedInformerFactory.
WithCustomResyncConfig sets a custom resync period for the specified informer types.
func WithNamespace(namespace string) SharedInformerOption
WithNamespace limits the SharedInformerFactory to the specified namespace.
func WithTweakListOptions(tweakListOptions internalinterfaces.TweakListOptionsFunc) SharedInformerOption
WithTweakListOptions sets a custom filter on all listers of the configured SharedInformerFactory.
Path | Synopsis |
---|---|
apps | |
apps/v1 | |
internalinterfaces | |
security | |
security/v1 |
Package externalversions imports 14 packages (graph) and is imported by 2 packages. Updated 2021-01-21. Refresh now. Tools for package owners.