Documentation ¶
Index ¶
- func NewCompositeControllerInformer(client internalclientset.Interface, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewControllerRevisionInformer(client internalclientset.Interface, namespace string, ...) cache.SharedIndexInformer
- func NewDecoratorControllerInformer(client internalclientset.Interface, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewFilteredCompositeControllerInformer(client internalclientset.Interface, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewFilteredControllerRevisionInformer(client internalclientset.Interface, namespace string, ...) cache.SharedIndexInformer
- func NewFilteredDecoratorControllerInformer(client internalclientset.Interface, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- type CompositeControllerInformer
- type ControllerRevisionInformer
- type DecoratorControllerInformer
- type Interface
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewCompositeControllerInformer ¶
func NewCompositeControllerInformer(client internalclientset.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer
NewCompositeControllerInformer constructs a new informer for CompositeController type. Always prefer using an informer factory to get a shared informer instead of getting an independent one. This reduces memory footprint and number of connections to the server.
func NewControllerRevisionInformer ¶
func NewControllerRevisionInformer(client internalclientset.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer
NewControllerRevisionInformer constructs a new informer for ControllerRevision type. Always prefer using an informer factory to get a shared informer instead of getting an independent one. This reduces memory footprint and number of connections to the server.
func NewDecoratorControllerInformer ¶
func NewDecoratorControllerInformer(client internalclientset.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer
NewDecoratorControllerInformer constructs a new informer for DecoratorController type. Always prefer using an informer factory to get a shared informer instead of getting an independent one. This reduces memory footprint and number of connections to the server.
func NewFilteredCompositeControllerInformer ¶
func NewFilteredCompositeControllerInformer(client internalclientset.Interface, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer
NewFilteredCompositeControllerInformer constructs a new informer for CompositeController type. Always prefer using an informer factory to get a shared informer instead of getting an independent one. This reduces memory footprint and number of connections to the server.
func NewFilteredControllerRevisionInformer ¶
func NewFilteredControllerRevisionInformer(client internalclientset.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer
NewFilteredControllerRevisionInformer constructs a new informer for ControllerRevision type. Always prefer using an informer factory to get a shared informer instead of getting an independent one. This reduces memory footprint and number of connections to the server.
func NewFilteredDecoratorControllerInformer ¶
func NewFilteredDecoratorControllerInformer(client internalclientset.Interface, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer
NewFilteredDecoratorControllerInformer constructs a new informer for DecoratorController type. Always prefer using an informer factory to get a shared informer instead of getting an independent one. This reduces memory footprint and number of connections to the server.
Types ¶
type CompositeControllerInformer ¶
type CompositeControllerInformer interface { Informer() cache.SharedIndexInformer Lister() v1alpha1.CompositeControllerLister }
CompositeControllerInformer provides access to a shared informer and lister for CompositeControllers.
type ControllerRevisionInformer ¶
type ControllerRevisionInformer interface { Informer() cache.SharedIndexInformer Lister() v1alpha1.ControllerRevisionLister }
ControllerRevisionInformer provides access to a shared informer and lister for ControllerRevisions.
type DecoratorControllerInformer ¶
type DecoratorControllerInformer interface { Informer() cache.SharedIndexInformer Lister() v1alpha1.DecoratorControllerLister }
DecoratorControllerInformer provides access to a shared informer and lister for DecoratorControllers.
type Interface ¶
type Interface interface { // CompositeControllers returns a CompositeControllerInformer. CompositeControllers() CompositeControllerInformer // ControllerRevisions returns a ControllerRevisionInformer. ControllerRevisions() ControllerRevisionInformer // DecoratorControllers returns a DecoratorControllerInformer. DecoratorControllers() DecoratorControllerInformer }
Interface provides access to all the informers in this group version.
func New ¶
func New(f internalinterfaces.SharedInformerFactory, namespace string, tweakListOptions internalinterfaces.TweakListOptionsFunc) Interface
New returns a new Interface.