package
3.11.0+incompatible
Repository: https://github.com/jchunkins/operator-lifecycle-manager.git
Documentation: pkg.go.dev

# Functions

New creates a set of new queueinformers given a name, a set of informers, and a sync handler to handle the objects that the operator is managing.
NewInformer creates a new queueinformer given a name, an informer, and a sync handler to handle the objects that the operator is managing.
NewOperator creates a new Operator configured to manage the cluster defined in kubeconfig.
No description provided by the author

# Structs

An Operator is a collection of QueueInformers OpClient is used to establish the connection to kubernetes.
QueueInformer ties an informer to a queue in order to process events from the informer the informer watches objects of interest and adds objects to the queue for processing the syncHandler is called for all objects on the queue.

# Type aliases

SyncHandler is the function that reconciles the controlled object when seen.