Documentation ¶
Index ¶
- func NewConfigInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewConfigSetInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewFilteredConfigInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewFilteredConfigSetInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewFilteredRunningConfigInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewFilteredUnManagedConfigInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewRunningConfigInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewUnManagedConfigInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- type ConfigInformer
- type ConfigSetInformer
- type Interface
- type RunningConfigInformer
- type UnManagedConfigInformer
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewConfigInformer ¶
func NewConfigInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer
NewConfigInformer constructs a new informer for Config 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 NewConfigSetInformer ¶
func NewConfigSetInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer
NewConfigSetInformer constructs a new informer for ConfigSet 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 NewFilteredConfigInformer ¶
func NewFilteredConfigInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer
NewFilteredConfigInformer constructs a new informer for Config 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 NewFilteredConfigSetInformer ¶
func NewFilteredConfigSetInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer
NewFilteredConfigSetInformer constructs a new informer for ConfigSet 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 NewFilteredRunningConfigInformer ¶
func NewFilteredRunningConfigInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer
NewFilteredRunningConfigInformer constructs a new informer for RunningConfig 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 NewFilteredUnManagedConfigInformer ¶
func NewFilteredUnManagedConfigInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer
NewFilteredUnManagedConfigInformer constructs a new informer for UnManagedConfig 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 NewRunningConfigInformer ¶
func NewRunningConfigInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer
NewRunningConfigInformer constructs a new informer for RunningConfig 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 NewUnManagedConfigInformer ¶
func NewUnManagedConfigInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer
NewUnManagedConfigInformer constructs a new informer for UnManagedConfig 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 ConfigInformer ¶
type ConfigInformer interface { Informer() cache.SharedIndexInformer Lister() v1alpha1.ConfigLister }
ConfigInformer provides access to a shared informer and lister for Configs.
type ConfigSetInformer ¶
type ConfigSetInformer interface { Informer() cache.SharedIndexInformer Lister() v1alpha1.ConfigSetLister }
ConfigSetInformer provides access to a shared informer and lister for ConfigSets.
type Interface ¶
type Interface interface { // Configs returns a ConfigInformer. Configs() ConfigInformer // ConfigSets returns a ConfigSetInformer. ConfigSets() ConfigSetInformer // RunningConfigs returns a RunningConfigInformer. RunningConfigs() RunningConfigInformer // UnManagedConfigs returns a UnManagedConfigInformer. UnManagedConfigs() UnManagedConfigInformer }
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.
type RunningConfigInformer ¶
type RunningConfigInformer interface { Informer() cache.SharedIndexInformer Lister() v1alpha1.RunningConfigLister }
RunningConfigInformer provides access to a shared informer and lister for RunningConfigs.
type UnManagedConfigInformer ¶
type UnManagedConfigInformer interface { Informer() cache.SharedIndexInformer Lister() v1alpha1.UnManagedConfigLister }
UnManagedConfigInformer provides access to a shared informer and lister for UnManagedConfigs.