client-gok8s.io/client-go/informers Index | Files | Directories

package informers

import "k8s.io/client-go/informers"

Package informers provides generated informers for Kubernetes APIs.

Index

Types

type GenericInformer

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

type SharedInformerFactory interface {
	internalinterfaces.SharedInformerFactory

	// Start initializes all requested informers. They are handled in goroutines
	// which run until the stop channel gets closed.
	// Warning: Start does not block. When run in a go-routine, it will race with a later WaitForCacheSync.
	Start(stopCh <-chan struct{})

	// Shutdown marks a factory as shutting down. At that point no new
	// informers can be started anymore and Start will return without
	// doing anything.
	//
	// In addition, Shutdown blocks until all goroutines have terminated. For that
	// to happen, the close channel(s) that they were started with must be closed,
	// either before Shutdown gets called or while it is waiting.
	//
	// Shutdown may be called multiple times, even concurrently. All such calls will
	// block until all goroutines have terminated.
	Shutdown()

	// WaitForCacheSync blocks until all started informers' caches were synced
	// or the stop channel gets closed.
	WaitForCacheSync(stopCh <-chan struct{}) map[reflect.Type]bool

	// ForResource gives generic access to a shared informer of the matching type.
	ForResource(resource schema.GroupVersionResource) (GenericInformer, error)

	// InformerFor returns the SharedIndexInformer for obj using an internal
	// client.
	InformerFor(obj runtime.Object, newFunc internalinterfaces.NewInformerFunc) cache.SharedIndexInformer

	Admissionregistration() admissionregistration.Interface
	Internal() apiserverinternal.Interface
	Apps() apps.Interface
	Autoscaling() autoscaling.Interface
	Batch() batch.Interface
	Certificates() certificates.Interface
	Coordination() coordination.Interface
	Core() core.Interface
	Discovery() discovery.Interface
	Events() events.Interface
	Extensions() extensions.Interface
	Flowcontrol() flowcontrol.Interface
	Networking() networking.Interface
	Node() node.Interface
	Policy() policy.Interface
	Rbac() rbac.Interface
	Resource() resource.Interface
	Scheduling() scheduling.Interface
	Storage() storage.Interface
	Storagemigration() storagemigration.Interface
}

SharedInformerFactory provides shared informers for resources in all known API group versions.

It is typically used like this:

ctx, cancel := context.Background()
defer cancel()
factory := NewSharedInformerFactory(client, resyncPeriod)
defer factory.WaitForStop()    // Returns immediately if nothing was started.
genericInformer := factory.ForResource(resource)
typedInformer := factory.SomeAPIGroup().V1().SomeType()
factory.Start(ctx.Done())          // Start processing these informers.
synced := factory.WaitForCacheSync(ctx.Done())
for v, ok := range synced {
    if !ok {
        fmt.Fprintf(os.Stderr, "caches failed to sync: %v", v)
        return
    }
}

// Creating informers can also be created after Start, but then
// Start must be called again:
anotherGenericInformer := factory.ForResource(resource)
factory.Start(ctx.Done())

func NewFilteredSharedInformerFactory

func NewFilteredSharedInformerFactory(client kubernetes.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

func NewSharedInformerFactory(client kubernetes.Interface, defaultResync time.Duration) SharedInformerFactory

NewSharedInformerFactory constructs a new instance of sharedInformerFactory for all namespaces.

func NewSharedInformerFactoryWithOptions

func NewSharedInformerFactoryWithOptions(client kubernetes.Interface, defaultResync time.Duration, options ...SharedInformerOption) SharedInformerFactory

NewSharedInformerFactoryWithOptions constructs a new instance of a SharedInformerFactory with additional options.

type SharedInformerOption

type SharedInformerOption func(*sharedInformerFactory) *sharedInformerFactory

SharedInformerOption defines the functional option type for SharedInformerFactory.

func WithCustomResyncConfig

func WithCustomResyncConfig(resyncConfig map[v1.Object]time.Duration) SharedInformerOption

WithCustomResyncConfig sets a custom resync period for the specified informer types.

func WithNamespace

func WithNamespace(namespace string) SharedInformerOption

WithNamespace limits the SharedInformerFactory to the specified namespace.

func WithTransform

func WithTransform(transform cache.TransformFunc) SharedInformerOption

WithTransform sets a transform on all informers.

func WithTweakListOptions

func WithTweakListOptions(tweakListOptions internalinterfaces.TweakListOptionsFunc) SharedInformerOption

WithTweakListOptions sets a custom filter on all listers of the configured SharedInformerFactory.

Source Files

doc.go factory.go generic.go

Directories

PathSynopsis
informers/admissionregistration
informers/admissionregistration/v1
informers/admissionregistration/v1alpha1
informers/admissionregistration/v1beta1
informers/apiserverinternal
informers/apiserverinternal/v1alpha1
informers/apps
informers/apps/v1
informers/apps/v1beta1
informers/apps/v1beta2
informers/autoscaling
informers/autoscaling/v1
informers/autoscaling/v2
informers/autoscaling/v2beta1
informers/autoscaling/v2beta2
informers/batch
informers/batch/v1
informers/batch/v1beta1
informers/certificates
informers/certificates/v1
informers/certificates/v1alpha1
informers/certificates/v1beta1
informers/coordination
informers/coordination/v1
informers/coordination/v1alpha2
informers/coordination/v1beta1
informers/core
informers/core/v1
informers/discovery
informers/discovery/v1
informers/discovery/v1beta1
informers/events
informers/events/v1
informers/events/v1beta1
informers/extensions
informers/extensions/v1beta1
informers/flowcontrol
informers/flowcontrol/v1
informers/flowcontrol/v1beta1
informers/flowcontrol/v1beta2
informers/flowcontrol/v1beta3
informers/internalinterfaces
informers/networking
informers/networking/v1
informers/networking/v1alpha1
informers/networking/v1beta1
informers/node
informers/node/v1
informers/node/v1alpha1
informers/node/v1beta1
informers/policy
informers/policy/v1
informers/policy/v1beta1
informers/rbac
informers/rbac/v1
informers/rbac/v1alpha1
informers/rbac/v1beta1
informers/resource
informers/resource/v1alpha3
informers/resource/v1beta1
informers/resource/v1beta2
informers/scheduling
informers/scheduling/v1
informers/scheduling/v1alpha1
informers/scheduling/v1beta1
informers/storage
informers/storagemigration
informers/storagemigration/v1alpha1
informers/storage/v1
informers/storage/v1alpha1
informers/storage/v1beta1
Version
v0.33.0 (latest)
Published
Apr 23, 2025
Platform
linux/amd64
Imports
80 packages
Last checked
1 hour ago

Tools for package owners.