Documentation ¶
Index ¶
- func NewFilteredNodePoolInformer(client versioned.Interface, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewFilteredUnitedDeploymentInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewFilteredYurtAppDaemonInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewFilteredYurtAppSetInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewFilteredYurtIngressInformer(client versioned.Interface, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewNodePoolInformer(client versioned.Interface, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewUnitedDeploymentInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewYurtAppDaemonInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewYurtAppSetInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewYurtIngressInformer(client versioned.Interface, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- type Interface
- type NodePoolInformer
- type UnitedDeploymentInformer
- type YurtAppDaemonInformer
- type YurtAppSetInformer
- type YurtIngressInformer
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewFilteredNodePoolInformer ¶
func NewFilteredNodePoolInformer(client versioned.Interface, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer
NewFilteredNodePoolInformer constructs a new informer for NodePool 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 NewFilteredUnitedDeploymentInformer ¶
func NewFilteredUnitedDeploymentInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer
NewFilteredUnitedDeploymentInformer constructs a new informer for UnitedDeployment 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 NewFilteredYurtAppDaemonInformer ¶
func NewFilteredYurtAppDaemonInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer
NewFilteredYurtAppDaemonInformer constructs a new informer for YurtAppDaemon 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 NewFilteredYurtAppSetInformer ¶ added in v0.6.0
func NewFilteredYurtAppSetInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer
NewFilteredYurtAppSetInformer constructs a new informer for YurtAppSet 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 NewFilteredYurtIngressInformer ¶
func NewFilteredYurtIngressInformer(client versioned.Interface, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer
NewFilteredYurtIngressInformer constructs a new informer for YurtIngress 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 NewNodePoolInformer ¶
func NewNodePoolInformer(client versioned.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer
NewNodePoolInformer constructs a new informer for NodePool 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 NewUnitedDeploymentInformer ¶
func NewUnitedDeploymentInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer
NewUnitedDeploymentInformer constructs a new informer for UnitedDeployment 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 NewYurtAppDaemonInformer ¶
func NewYurtAppDaemonInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer
NewYurtAppDaemonInformer constructs a new informer for YurtAppDaemon 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 NewYurtAppSetInformer ¶ added in v0.6.0
func NewYurtAppSetInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer
NewYurtAppSetInformer constructs a new informer for YurtAppSet 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 NewYurtIngressInformer ¶
func NewYurtIngressInformer(client versioned.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer
NewYurtIngressInformer constructs a new informer for YurtIngress 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 Interface ¶
type Interface interface { // NodePools returns a NodePoolInformer. NodePools() NodePoolInformer // UnitedDeployments returns a UnitedDeploymentInformer. UnitedDeployments() UnitedDeploymentInformer // YurtAppDaemons returns a YurtAppDaemonInformer. YurtAppDaemons() YurtAppDaemonInformer // YurtAppSets returns a YurtAppSetInformer. YurtAppSets() YurtAppSetInformer // YurtIngresses returns a YurtIngressInformer. YurtIngresses() YurtIngressInformer }
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 NodePoolInformer ¶
type NodePoolInformer interface { Informer() cache.SharedIndexInformer Lister() v1alpha1.NodePoolLister }
NodePoolInformer provides access to a shared informer and lister for NodePools.
type UnitedDeploymentInformer ¶
type UnitedDeploymentInformer interface { Informer() cache.SharedIndexInformer Lister() v1alpha1.UnitedDeploymentLister }
UnitedDeploymentInformer provides access to a shared informer and lister for UnitedDeployments.
type YurtAppDaemonInformer ¶
type YurtAppDaemonInformer interface { Informer() cache.SharedIndexInformer Lister() v1alpha1.YurtAppDaemonLister }
YurtAppDaemonInformer provides access to a shared informer and lister for YurtAppDaemons.
type YurtAppSetInformer ¶ added in v0.6.0
type YurtAppSetInformer interface { Informer() cache.SharedIndexInformer Lister() v1alpha1.YurtAppSetLister }
YurtAppSetInformer provides access to a shared informer and lister for YurtAppSets.
type YurtIngressInformer ¶
type YurtIngressInformer interface { Informer() cache.SharedIndexInformer Lister() v1alpha1.YurtIngressLister }
YurtIngressInformer provides access to a shared informer and lister for YurtIngresses.