v1alpha1

package
v0.16.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 4, 2023 License: Apache-2.0 Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func NewClusterSourceInformer added in v0.10.0

func NewClusterSourceInformer(client versioned.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer

NewClusterSourceInformer constructs a new informer for ClusterSource 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 NewClusterSummaryInformer added in v0.10.0

func NewClusterSummaryInformer(client versioned.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer

NewClusterSummaryInformer constructs a new informer for ClusterSummary 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 NewClusterTargetInformer added in v0.10.0

func NewClusterTargetInformer(client versioned.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer

NewClusterTargetInformer constructs a new informer for ClusterTarget 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 NewFilteredClusterSourceInformer added in v0.10.0

func NewFilteredClusterSourceInformer(client versioned.Interface, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer

NewFilteredClusterSourceInformer constructs a new informer for ClusterSource 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 NewFilteredClusterSummaryInformer added in v0.10.0

func NewFilteredClusterSummaryInformer(client versioned.Interface, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer

NewFilteredClusterSummaryInformer constructs a new informer for ClusterSummary 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 NewFilteredClusterTargetInformer added in v0.10.0

func NewFilteredClusterTargetInformer(client versioned.Interface, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer

NewFilteredClusterTargetInformer constructs a new informer for ClusterTarget 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 NewFilteredPodChaperonInformer

func NewFilteredPodChaperonInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer

NewFilteredPodChaperonInformer constructs a new informer for PodChaperon 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 NewFilteredSourceInformer added in v0.10.0

func NewFilteredSourceInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer

NewFilteredSourceInformer constructs a new informer for Source 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 NewFilteredTargetInformer added in v0.10.0

func NewFilteredTargetInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer

NewFilteredTargetInformer constructs a new informer for Target 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 NewPodChaperonInformer

func NewPodChaperonInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer

NewPodChaperonInformer constructs a new informer for PodChaperon 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 NewSourceInformer added in v0.10.0

func NewSourceInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer

NewSourceInformer constructs a new informer for Source 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 NewTargetInformer added in v0.10.0

func NewTargetInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer

NewTargetInformer constructs a new informer for Target 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 ClusterSourceInformer added in v0.10.0

type ClusterSourceInformer interface {
	Informer() cache.SharedIndexInformer
	Lister() v1alpha1.ClusterSourceLister
}

ClusterSourceInformer provides access to a shared informer and lister for ClusterSources.

type ClusterSummaryInformer added in v0.10.0

type ClusterSummaryInformer interface {
	Informer() cache.SharedIndexInformer
	Lister() v1alpha1.ClusterSummaryLister
}

ClusterSummaryInformer provides access to a shared informer and lister for ClusterSummaries.

type ClusterTargetInformer added in v0.10.0

type ClusterTargetInformer interface {
	Informer() cache.SharedIndexInformer
	Lister() v1alpha1.ClusterTargetLister
}

ClusterTargetInformer provides access to a shared informer and lister for ClusterTargets.

type Interface

type Interface interface {
	// ClusterSources returns a ClusterSourceInformer.
	ClusterSources() ClusterSourceInformer
	// ClusterSummaries returns a ClusterSummaryInformer.
	ClusterSummaries() ClusterSummaryInformer
	// ClusterTargets returns a ClusterTargetInformer.
	ClusterTargets() ClusterTargetInformer
	// PodChaperons returns a PodChaperonInformer.
	PodChaperons() PodChaperonInformer
	// Sources returns a SourceInformer.
	Sources() SourceInformer
	// Targets returns a TargetInformer.
	Targets() TargetInformer
}

Interface provides access to all the informers in this group version.

func New

New returns a new Interface.

type PodChaperonInformer

type PodChaperonInformer interface {
	Informer() cache.SharedIndexInformer
	Lister() v1alpha1.PodChaperonLister
}

PodChaperonInformer provides access to a shared informer and lister for PodChaperons.

type SourceInformer added in v0.10.0

type SourceInformer interface {
	Informer() cache.SharedIndexInformer
	Lister() v1alpha1.SourceLister
}

SourceInformer provides access to a shared informer and lister for Sources.

type TargetInformer added in v0.10.0

type TargetInformer interface {
	Informer() cache.SharedIndexInformer
	Lister() v1alpha1.TargetLister
}

TargetInformer provides access to a shared informer and lister for Targets.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL