Documentation ¶
Index ¶
- func NewChartInfoInformer(client versioned.Interface, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewFeatureInformer(client versioned.Interface, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewFilteredChartInfoInformer(client versioned.Interface, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewFilteredFeatureInformer(client versioned.Interface, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewFilteredHelmReleaseInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewHelmReleaseInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- type ChartInfoInformer
- type FeatureInformer
- type HelmReleaseInformer
- type Interface
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewChartInfoInformer ¶
func NewChartInfoInformer(client versioned.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer
NewChartInfoInformer constructs a new informer for ChartInfo 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 NewFeatureInformer ¶
func NewFeatureInformer(client versioned.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer
NewFeatureInformer constructs a new informer for Feature 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 NewFilteredChartInfoInformer ¶
func NewFilteredChartInfoInformer(client versioned.Interface, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer
NewFilteredChartInfoInformer constructs a new informer for ChartInfo 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 NewFilteredFeatureInformer ¶
func NewFilteredFeatureInformer(client versioned.Interface, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer
NewFilteredFeatureInformer constructs a new informer for Feature 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 NewFilteredHelmReleaseInformer ¶
func NewFilteredHelmReleaseInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer
NewFilteredHelmReleaseInformer constructs a new informer for HelmRelease 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 NewHelmReleaseInformer ¶
func NewHelmReleaseInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer
NewHelmReleaseInformer constructs a new informer for HelmRelease 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 ChartInfoInformer ¶
type ChartInfoInformer interface { Informer() cache.SharedIndexInformer Lister() v1.ChartInfoLister }
ChartInfoInformer provides access to a shared informer and lister for ChartInfos.
type FeatureInformer ¶
type FeatureInformer interface { Informer() cache.SharedIndexInformer Lister() v1.FeatureLister }
FeatureInformer provides access to a shared informer and lister for Features.
type HelmReleaseInformer ¶
type HelmReleaseInformer interface { Informer() cache.SharedIndexInformer Lister() v1.HelmReleaseLister }
HelmReleaseInformer provides access to a shared informer and lister for HelmReleases.
type Interface ¶
type Interface interface { // ChartInfos returns a ChartInfoInformer. ChartInfos() ChartInfoInformer // Features returns a FeatureInformer. Features() FeatureInformer // HelmReleases returns a HelmReleaseInformer. HelmReleases() HelmReleaseInformer }
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.