code
stringlengths
12
335k
docstring
stringlengths
20
20.8k
func_name
stringlengths
1
105
language
stringclasses
1 value
repo
stringclasses
498 values
path
stringlengths
5
172
url
stringlengths
43
235
license
stringclasses
4 values
func NewFilteredPodInformer(client kubernetes.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer { return cache.NewSharedIndexInformer( &cache.ListWatch{ ListFunc: func(options metav1.ListOptions) (runtime.Object, error) { if tweakListOptions != nil { tweakListOptions(&options) } return client.CoreV1().Pods(namespace).List(context.TODO(), options) }, WatchFunc: func(options metav1.ListOptions) (watch.Interface, error) { if tweakListOptions != nil { tweakListOptions(&options) } return client.CoreV1().Pods(namespace).Watch(context.TODO(), options) }, }, &corev1.Pod{}, resyncPeriod, indexers, ) }
NewFilteredPodInformer constructs a new informer for Pod 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.
NewFilteredPodInformer
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/core/v1/pod.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/core/v1/pod.go
Apache-2.0
func NewReplicationControllerInformer(client kubernetes.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer { return NewFilteredReplicationControllerInformer(client, namespace, resyncPeriod, indexers, nil) }
NewReplicationControllerInformer constructs a new informer for ReplicationController 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.
NewReplicationControllerInformer
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/core/v1/replicationcontroller.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/core/v1/replicationcontroller.go
Apache-2.0
func NewFilteredReplicationControllerInformer(client kubernetes.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer { return cache.NewSharedIndexInformer( &cache.ListWatch{ ListFunc: func(options metav1.ListOptions) (runtime.Object, error) { if tweakListOptions != nil { tweakListOptions(&options) } return client.CoreV1().ReplicationControllers(namespace).List(context.TODO(), options) }, WatchFunc: func(options metav1.ListOptions) (watch.Interface, error) { if tweakListOptions != nil { tweakListOptions(&options) } return client.CoreV1().ReplicationControllers(namespace).Watch(context.TODO(), options) }, }, &corev1.ReplicationController{}, resyncPeriod, indexers, ) }
NewFilteredReplicationControllerInformer constructs a new informer for ReplicationController 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.
NewFilteredReplicationControllerInformer
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/core/v1/replicationcontroller.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/core/v1/replicationcontroller.go
Apache-2.0
func New(f internalinterfaces.SharedInformerFactory, namespace string, tweakListOptions internalinterfaces.TweakListOptionsFunc) Interface { return &version{factory: f, namespace: namespace, tweakListOptions: tweakListOptions} }
New returns a new Interface.
New
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/core/v1/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/core/v1/interface.go
Apache-2.0
func (v *version) ComponentStatuses() ComponentStatusInformer { return &componentStatusInformer{factory: v.factory, tweakListOptions: v.tweakListOptions} }
ComponentStatuses returns a ComponentStatusInformer.
ComponentStatuses
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/core/v1/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/core/v1/interface.go
Apache-2.0
func (v *version) ConfigMaps() ConfigMapInformer { return &configMapInformer{factory: v.factory, namespace: v.namespace, tweakListOptions: v.tweakListOptions} }
ConfigMaps returns a ConfigMapInformer.
ConfigMaps
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/core/v1/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/core/v1/interface.go
Apache-2.0
func (v *version) Endpoints() EndpointsInformer { return &endpointsInformer{factory: v.factory, namespace: v.namespace, tweakListOptions: v.tweakListOptions} }
Endpoints returns a EndpointsInformer.
Endpoints
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/core/v1/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/core/v1/interface.go
Apache-2.0
func (v *version) Events() EventInformer { return &eventInformer{factory: v.factory, namespace: v.namespace, tweakListOptions: v.tweakListOptions} }
Events returns a EventInformer.
Events
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/core/v1/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/core/v1/interface.go
Apache-2.0
func (v *version) LimitRanges() LimitRangeInformer { return &limitRangeInformer{factory: v.factory, namespace: v.namespace, tweakListOptions: v.tweakListOptions} }
LimitRanges returns a LimitRangeInformer.
LimitRanges
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/core/v1/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/core/v1/interface.go
Apache-2.0
func (v *version) Namespaces() NamespaceInformer { return &namespaceInformer{factory: v.factory, tweakListOptions: v.tweakListOptions} }
Namespaces returns a NamespaceInformer.
Namespaces
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/core/v1/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/core/v1/interface.go
Apache-2.0
func (v *version) Nodes() NodeInformer { return &nodeInformer{factory: v.factory, tweakListOptions: v.tweakListOptions} }
Nodes returns a NodeInformer.
Nodes
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/core/v1/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/core/v1/interface.go
Apache-2.0
func (v *version) PersistentVolumes() PersistentVolumeInformer { return &persistentVolumeInformer{factory: v.factory, tweakListOptions: v.tweakListOptions} }
PersistentVolumes returns a PersistentVolumeInformer.
PersistentVolumes
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/core/v1/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/core/v1/interface.go
Apache-2.0
func (v *version) PersistentVolumeClaims() PersistentVolumeClaimInformer { return &persistentVolumeClaimInformer{factory: v.factory, namespace: v.namespace, tweakListOptions: v.tweakListOptions} }
PersistentVolumeClaims returns a PersistentVolumeClaimInformer.
PersistentVolumeClaims
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/core/v1/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/core/v1/interface.go
Apache-2.0
func (v *version) Pods() PodInformer { return &podInformer{factory: v.factory, namespace: v.namespace, tweakListOptions: v.tweakListOptions} }
Pods returns a PodInformer.
Pods
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/core/v1/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/core/v1/interface.go
Apache-2.0
func (v *version) PodTemplates() PodTemplateInformer { return &podTemplateInformer{factory: v.factory, namespace: v.namespace, tweakListOptions: v.tweakListOptions} }
PodTemplates returns a PodTemplateInformer.
PodTemplates
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/core/v1/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/core/v1/interface.go
Apache-2.0
func (v *version) ReplicationControllers() ReplicationControllerInformer { return &replicationControllerInformer{factory: v.factory, namespace: v.namespace, tweakListOptions: v.tweakListOptions} }
ReplicationControllers returns a ReplicationControllerInformer.
ReplicationControllers
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/core/v1/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/core/v1/interface.go
Apache-2.0
func (v *version) ResourceQuotas() ResourceQuotaInformer { return &resourceQuotaInformer{factory: v.factory, namespace: v.namespace, tweakListOptions: v.tweakListOptions} }
ResourceQuotas returns a ResourceQuotaInformer.
ResourceQuotas
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/core/v1/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/core/v1/interface.go
Apache-2.0
func (v *version) Secrets() SecretInformer { return &secretInformer{factory: v.factory, namespace: v.namespace, tweakListOptions: v.tweakListOptions} }
Secrets returns a SecretInformer.
Secrets
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/core/v1/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/core/v1/interface.go
Apache-2.0
func (v *version) Services() ServiceInformer { return &serviceInformer{factory: v.factory, namespace: v.namespace, tweakListOptions: v.tweakListOptions} }
Services returns a ServiceInformer.
Services
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/core/v1/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/core/v1/interface.go
Apache-2.0
func (v *version) ServiceAccounts() ServiceAccountInformer { return &serviceAccountInformer{factory: v.factory, namespace: v.namespace, tweakListOptions: v.tweakListOptions} }
ServiceAccounts returns a ServiceAccountInformer.
ServiceAccounts
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/core/v1/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/core/v1/interface.go
Apache-2.0
func NewSecretInformer(client kubernetes.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer { return NewFilteredSecretInformer(client, namespace, resyncPeriod, indexers, nil) }
NewSecretInformer constructs a new informer for Secret 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.
NewSecretInformer
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/core/v1/secret.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/core/v1/secret.go
Apache-2.0
func NewFilteredSecretInformer(client kubernetes.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer { return cache.NewSharedIndexInformer( &cache.ListWatch{ ListFunc: func(options metav1.ListOptions) (runtime.Object, error) { if tweakListOptions != nil { tweakListOptions(&options) } return client.CoreV1().Secrets(namespace).List(context.TODO(), options) }, WatchFunc: func(options metav1.ListOptions) (watch.Interface, error) { if tweakListOptions != nil { tweakListOptions(&options) } return client.CoreV1().Secrets(namespace).Watch(context.TODO(), options) }, }, &corev1.Secret{}, resyncPeriod, indexers, ) }
NewFilteredSecretInformer constructs a new informer for Secret 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.
NewFilteredSecretInformer
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/core/v1/secret.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/core/v1/secret.go
Apache-2.0
func NewNamespaceInformer(client kubernetes.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer { return NewFilteredNamespaceInformer(client, resyncPeriod, indexers, nil) }
NewNamespaceInformer constructs a new informer for Namespace 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.
NewNamespaceInformer
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/core/v1/namespace.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/core/v1/namespace.go
Apache-2.0
func NewFilteredNamespaceInformer(client kubernetes.Interface, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer { return cache.NewSharedIndexInformer( &cache.ListWatch{ ListFunc: func(options metav1.ListOptions) (runtime.Object, error) { if tweakListOptions != nil { tweakListOptions(&options) } return client.CoreV1().Namespaces().List(context.TODO(), options) }, WatchFunc: func(options metav1.ListOptions) (watch.Interface, error) { if tweakListOptions != nil { tweakListOptions(&options) } return client.CoreV1().Namespaces().Watch(context.TODO(), options) }, }, &corev1.Namespace{}, resyncPeriod, indexers, ) }
NewFilteredNamespaceInformer constructs a new informer for Namespace 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.
NewFilteredNamespaceInformer
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/core/v1/namespace.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/core/v1/namespace.go
Apache-2.0
func New(f internalinterfaces.SharedInformerFactory, namespace string, tweakListOptions internalinterfaces.TweakListOptionsFunc) Interface { return &group{factory: f, namespace: namespace, tweakListOptions: tweakListOptions} }
New returns a new Interface.
New
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/flowcontrol/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/flowcontrol/interface.go
Apache-2.0
func (g *group) V1() v1.Interface { return v1.New(g.factory, g.namespace, g.tweakListOptions) }
V1 returns a new v1.Interface.
V1
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/flowcontrol/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/flowcontrol/interface.go
Apache-2.0
func (g *group) V1beta1() v1beta1.Interface { return v1beta1.New(g.factory, g.namespace, g.tweakListOptions) }
V1beta1 returns a new v1beta1.Interface.
V1beta1
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/flowcontrol/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/flowcontrol/interface.go
Apache-2.0
func (g *group) V1beta2() v1beta2.Interface { return v1beta2.New(g.factory, g.namespace, g.tweakListOptions) }
V1beta2 returns a new v1beta2.Interface.
V1beta2
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/flowcontrol/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/flowcontrol/interface.go
Apache-2.0
func (g *group) V1beta3() v1beta3.Interface { return v1beta3.New(g.factory, g.namespace, g.tweakListOptions) }
V1beta3 returns a new v1beta3.Interface.
V1beta3
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/flowcontrol/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/flowcontrol/interface.go
Apache-2.0
func NewFlowSchemaInformer(client kubernetes.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer { return NewFilteredFlowSchemaInformer(client, resyncPeriod, indexers, nil) }
NewFlowSchemaInformer constructs a new informer for FlowSchema 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.
NewFlowSchemaInformer
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/flowcontrol/v1beta1/flowschema.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/flowcontrol/v1beta1/flowschema.go
Apache-2.0
func NewFilteredFlowSchemaInformer(client kubernetes.Interface, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer { return cache.NewSharedIndexInformer( &cache.ListWatch{ ListFunc: func(options v1.ListOptions) (runtime.Object, error) { if tweakListOptions != nil { tweakListOptions(&options) } return client.FlowcontrolV1beta1().FlowSchemas().List(context.TODO(), options) }, WatchFunc: func(options v1.ListOptions) (watch.Interface, error) { if tweakListOptions != nil { tweakListOptions(&options) } return client.FlowcontrolV1beta1().FlowSchemas().Watch(context.TODO(), options) }, }, &flowcontrolv1beta1.FlowSchema{}, resyncPeriod, indexers, ) }
NewFilteredFlowSchemaInformer constructs a new informer for FlowSchema 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.
NewFilteredFlowSchemaInformer
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/flowcontrol/v1beta1/flowschema.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/flowcontrol/v1beta1/flowschema.go
Apache-2.0
func New(f internalinterfaces.SharedInformerFactory, namespace string, tweakListOptions internalinterfaces.TweakListOptionsFunc) Interface { return &version{factory: f, namespace: namespace, tweakListOptions: tweakListOptions} }
New returns a new Interface.
New
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/flowcontrol/v1beta1/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/flowcontrol/v1beta1/interface.go
Apache-2.0
func (v *version) FlowSchemas() FlowSchemaInformer { return &flowSchemaInformer{factory: v.factory, tweakListOptions: v.tweakListOptions} }
FlowSchemas returns a FlowSchemaInformer.
FlowSchemas
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/flowcontrol/v1beta1/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/flowcontrol/v1beta1/interface.go
Apache-2.0
func (v *version) PriorityLevelConfigurations() PriorityLevelConfigurationInformer { return &priorityLevelConfigurationInformer{factory: v.factory, tweakListOptions: v.tweakListOptions} }
PriorityLevelConfigurations returns a PriorityLevelConfigurationInformer.
PriorityLevelConfigurations
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/flowcontrol/v1beta1/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/flowcontrol/v1beta1/interface.go
Apache-2.0
func NewPriorityLevelConfigurationInformer(client kubernetes.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer { return NewFilteredPriorityLevelConfigurationInformer(client, resyncPeriod, indexers, nil) }
NewPriorityLevelConfigurationInformer constructs a new informer for PriorityLevelConfiguration 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.
NewPriorityLevelConfigurationInformer
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/flowcontrol/v1beta1/prioritylevelconfiguration.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/flowcontrol/v1beta1/prioritylevelconfiguration.go
Apache-2.0
func NewFilteredPriorityLevelConfigurationInformer(client kubernetes.Interface, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer { return cache.NewSharedIndexInformer( &cache.ListWatch{ ListFunc: func(options v1.ListOptions) (runtime.Object, error) { if tweakListOptions != nil { tweakListOptions(&options) } return client.FlowcontrolV1beta1().PriorityLevelConfigurations().List(context.TODO(), options) }, WatchFunc: func(options v1.ListOptions) (watch.Interface, error) { if tweakListOptions != nil { tweakListOptions(&options) } return client.FlowcontrolV1beta1().PriorityLevelConfigurations().Watch(context.TODO(), options) }, }, &flowcontrolv1beta1.PriorityLevelConfiguration{}, resyncPeriod, indexers, ) }
NewFilteredPriorityLevelConfigurationInformer constructs a new informer for PriorityLevelConfiguration 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.
NewFilteredPriorityLevelConfigurationInformer
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/flowcontrol/v1beta1/prioritylevelconfiguration.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/flowcontrol/v1beta1/prioritylevelconfiguration.go
Apache-2.0
func NewFlowSchemaInformer(client kubernetes.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer { return NewFilteredFlowSchemaInformer(client, resyncPeriod, indexers, nil) }
NewFlowSchemaInformer constructs a new informer for FlowSchema 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.
NewFlowSchemaInformer
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/flowcontrol/v1beta2/flowschema.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/flowcontrol/v1beta2/flowschema.go
Apache-2.0
func NewFilteredFlowSchemaInformer(client kubernetes.Interface, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer { return cache.NewSharedIndexInformer( &cache.ListWatch{ ListFunc: func(options v1.ListOptions) (runtime.Object, error) { if tweakListOptions != nil { tweakListOptions(&options) } return client.FlowcontrolV1beta2().FlowSchemas().List(context.TODO(), options) }, WatchFunc: func(options v1.ListOptions) (watch.Interface, error) { if tweakListOptions != nil { tweakListOptions(&options) } return client.FlowcontrolV1beta2().FlowSchemas().Watch(context.TODO(), options) }, }, &flowcontrolv1beta2.FlowSchema{}, resyncPeriod, indexers, ) }
NewFilteredFlowSchemaInformer constructs a new informer for FlowSchema 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.
NewFilteredFlowSchemaInformer
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/flowcontrol/v1beta2/flowschema.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/flowcontrol/v1beta2/flowschema.go
Apache-2.0
func New(f internalinterfaces.SharedInformerFactory, namespace string, tweakListOptions internalinterfaces.TweakListOptionsFunc) Interface { return &version{factory: f, namespace: namespace, tweakListOptions: tweakListOptions} }
New returns a new Interface.
New
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/flowcontrol/v1beta2/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/flowcontrol/v1beta2/interface.go
Apache-2.0
func (v *version) FlowSchemas() FlowSchemaInformer { return &flowSchemaInformer{factory: v.factory, tweakListOptions: v.tweakListOptions} }
FlowSchemas returns a FlowSchemaInformer.
FlowSchemas
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/flowcontrol/v1beta2/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/flowcontrol/v1beta2/interface.go
Apache-2.0
func (v *version) PriorityLevelConfigurations() PriorityLevelConfigurationInformer { return &priorityLevelConfigurationInformer{factory: v.factory, tweakListOptions: v.tweakListOptions} }
PriorityLevelConfigurations returns a PriorityLevelConfigurationInformer.
PriorityLevelConfigurations
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/flowcontrol/v1beta2/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/flowcontrol/v1beta2/interface.go
Apache-2.0
func NewPriorityLevelConfigurationInformer(client kubernetes.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer { return NewFilteredPriorityLevelConfigurationInformer(client, resyncPeriod, indexers, nil) }
NewPriorityLevelConfigurationInformer constructs a new informer for PriorityLevelConfiguration 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.
NewPriorityLevelConfigurationInformer
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/flowcontrol/v1beta2/prioritylevelconfiguration.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/flowcontrol/v1beta2/prioritylevelconfiguration.go
Apache-2.0
func NewFilteredPriorityLevelConfigurationInformer(client kubernetes.Interface, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer { return cache.NewSharedIndexInformer( &cache.ListWatch{ ListFunc: func(options v1.ListOptions) (runtime.Object, error) { if tweakListOptions != nil { tweakListOptions(&options) } return client.FlowcontrolV1beta2().PriorityLevelConfigurations().List(context.TODO(), options) }, WatchFunc: func(options v1.ListOptions) (watch.Interface, error) { if tweakListOptions != nil { tweakListOptions(&options) } return client.FlowcontrolV1beta2().PriorityLevelConfigurations().Watch(context.TODO(), options) }, }, &flowcontrolv1beta2.PriorityLevelConfiguration{}, resyncPeriod, indexers, ) }
NewFilteredPriorityLevelConfigurationInformer constructs a new informer for PriorityLevelConfiguration 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.
NewFilteredPriorityLevelConfigurationInformer
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/flowcontrol/v1beta2/prioritylevelconfiguration.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/flowcontrol/v1beta2/prioritylevelconfiguration.go
Apache-2.0
func NewFlowSchemaInformer(client kubernetes.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer { return NewFilteredFlowSchemaInformer(client, resyncPeriod, indexers, nil) }
NewFlowSchemaInformer constructs a new informer for FlowSchema 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.
NewFlowSchemaInformer
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/flowcontrol/v1/flowschema.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/flowcontrol/v1/flowschema.go
Apache-2.0
func NewFilteredFlowSchemaInformer(client kubernetes.Interface, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer { return cache.NewSharedIndexInformer( &cache.ListWatch{ ListFunc: func(options metav1.ListOptions) (runtime.Object, error) { if tweakListOptions != nil { tweakListOptions(&options) } return client.FlowcontrolV1().FlowSchemas().List(context.TODO(), options) }, WatchFunc: func(options metav1.ListOptions) (watch.Interface, error) { if tweakListOptions != nil { tweakListOptions(&options) } return client.FlowcontrolV1().FlowSchemas().Watch(context.TODO(), options) }, }, &flowcontrolv1.FlowSchema{}, resyncPeriod, indexers, ) }
NewFilteredFlowSchemaInformer constructs a new informer for FlowSchema 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.
NewFilteredFlowSchemaInformer
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/flowcontrol/v1/flowschema.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/flowcontrol/v1/flowschema.go
Apache-2.0
func New(f internalinterfaces.SharedInformerFactory, namespace string, tweakListOptions internalinterfaces.TweakListOptionsFunc) Interface { return &version{factory: f, namespace: namespace, tweakListOptions: tweakListOptions} }
New returns a new Interface.
New
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/flowcontrol/v1/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/flowcontrol/v1/interface.go
Apache-2.0
func (v *version) FlowSchemas() FlowSchemaInformer { return &flowSchemaInformer{factory: v.factory, tweakListOptions: v.tweakListOptions} }
FlowSchemas returns a FlowSchemaInformer.
FlowSchemas
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/flowcontrol/v1/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/flowcontrol/v1/interface.go
Apache-2.0
func (v *version) PriorityLevelConfigurations() PriorityLevelConfigurationInformer { return &priorityLevelConfigurationInformer{factory: v.factory, tweakListOptions: v.tweakListOptions} }
PriorityLevelConfigurations returns a PriorityLevelConfigurationInformer.
PriorityLevelConfigurations
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/flowcontrol/v1/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/flowcontrol/v1/interface.go
Apache-2.0
func NewPriorityLevelConfigurationInformer(client kubernetes.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer { return NewFilteredPriorityLevelConfigurationInformer(client, resyncPeriod, indexers, nil) }
NewPriorityLevelConfigurationInformer constructs a new informer for PriorityLevelConfiguration 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.
NewPriorityLevelConfigurationInformer
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/flowcontrol/v1/prioritylevelconfiguration.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/flowcontrol/v1/prioritylevelconfiguration.go
Apache-2.0
func NewFilteredPriorityLevelConfigurationInformer(client kubernetes.Interface, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer { return cache.NewSharedIndexInformer( &cache.ListWatch{ ListFunc: func(options metav1.ListOptions) (runtime.Object, error) { if tweakListOptions != nil { tweakListOptions(&options) } return client.FlowcontrolV1().PriorityLevelConfigurations().List(context.TODO(), options) }, WatchFunc: func(options metav1.ListOptions) (watch.Interface, error) { if tweakListOptions != nil { tweakListOptions(&options) } return client.FlowcontrolV1().PriorityLevelConfigurations().Watch(context.TODO(), options) }, }, &flowcontrolv1.PriorityLevelConfiguration{}, resyncPeriod, indexers, ) }
NewFilteredPriorityLevelConfigurationInformer constructs a new informer for PriorityLevelConfiguration 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.
NewFilteredPriorityLevelConfigurationInformer
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/flowcontrol/v1/prioritylevelconfiguration.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/flowcontrol/v1/prioritylevelconfiguration.go
Apache-2.0
func NewFlowSchemaInformer(client kubernetes.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer { return NewFilteredFlowSchemaInformer(client, resyncPeriod, indexers, nil) }
NewFlowSchemaInformer constructs a new informer for FlowSchema 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.
NewFlowSchemaInformer
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/flowcontrol/v1beta3/flowschema.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/flowcontrol/v1beta3/flowschema.go
Apache-2.0
func NewFilteredFlowSchemaInformer(client kubernetes.Interface, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer { return cache.NewSharedIndexInformer( &cache.ListWatch{ ListFunc: func(options v1.ListOptions) (runtime.Object, error) { if tweakListOptions != nil { tweakListOptions(&options) } return client.FlowcontrolV1beta3().FlowSchemas().List(context.TODO(), options) }, WatchFunc: func(options v1.ListOptions) (watch.Interface, error) { if tweakListOptions != nil { tweakListOptions(&options) } return client.FlowcontrolV1beta3().FlowSchemas().Watch(context.TODO(), options) }, }, &flowcontrolv1beta3.FlowSchema{}, resyncPeriod, indexers, ) }
NewFilteredFlowSchemaInformer constructs a new informer for FlowSchema 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.
NewFilteredFlowSchemaInformer
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/flowcontrol/v1beta3/flowschema.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/flowcontrol/v1beta3/flowschema.go
Apache-2.0
func New(f internalinterfaces.SharedInformerFactory, namespace string, tweakListOptions internalinterfaces.TweakListOptionsFunc) Interface { return &version{factory: f, namespace: namespace, tweakListOptions: tweakListOptions} }
New returns a new Interface.
New
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/flowcontrol/v1beta3/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/flowcontrol/v1beta3/interface.go
Apache-2.0
func (v *version) FlowSchemas() FlowSchemaInformer { return &flowSchemaInformer{factory: v.factory, tweakListOptions: v.tweakListOptions} }
FlowSchemas returns a FlowSchemaInformer.
FlowSchemas
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/flowcontrol/v1beta3/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/flowcontrol/v1beta3/interface.go
Apache-2.0
func (v *version) PriorityLevelConfigurations() PriorityLevelConfigurationInformer { return &priorityLevelConfigurationInformer{factory: v.factory, tweakListOptions: v.tweakListOptions} }
PriorityLevelConfigurations returns a PriorityLevelConfigurationInformer.
PriorityLevelConfigurations
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/flowcontrol/v1beta3/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/flowcontrol/v1beta3/interface.go
Apache-2.0
func NewPriorityLevelConfigurationInformer(client kubernetes.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer { return NewFilteredPriorityLevelConfigurationInformer(client, resyncPeriod, indexers, nil) }
NewPriorityLevelConfigurationInformer constructs a new informer for PriorityLevelConfiguration 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.
NewPriorityLevelConfigurationInformer
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/flowcontrol/v1beta3/prioritylevelconfiguration.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/flowcontrol/v1beta3/prioritylevelconfiguration.go
Apache-2.0
func NewFilteredPriorityLevelConfigurationInformer(client kubernetes.Interface, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer { return cache.NewSharedIndexInformer( &cache.ListWatch{ ListFunc: func(options v1.ListOptions) (runtime.Object, error) { if tweakListOptions != nil { tweakListOptions(&options) } return client.FlowcontrolV1beta3().PriorityLevelConfigurations().List(context.TODO(), options) }, WatchFunc: func(options v1.ListOptions) (watch.Interface, error) { if tweakListOptions != nil { tweakListOptions(&options) } return client.FlowcontrolV1beta3().PriorityLevelConfigurations().Watch(context.TODO(), options) }, }, &flowcontrolv1beta3.PriorityLevelConfiguration{}, resyncPeriod, indexers, ) }
NewFilteredPriorityLevelConfigurationInformer constructs a new informer for PriorityLevelConfiguration 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.
NewFilteredPriorityLevelConfigurationInformer
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/flowcontrol/v1beta3/prioritylevelconfiguration.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/flowcontrol/v1beta3/prioritylevelconfiguration.go
Apache-2.0
func New(f internalinterfaces.SharedInformerFactory, namespace string, tweakListOptions internalinterfaces.TweakListOptionsFunc) Interface { return &group{factory: f, namespace: namespace, tweakListOptions: tweakListOptions} }
New returns a new Interface.
New
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/admissionregistration/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/admissionregistration/interface.go
Apache-2.0
func (g *group) V1() v1.Interface { return v1.New(g.factory, g.namespace, g.tweakListOptions) }
V1 returns a new v1.Interface.
V1
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/admissionregistration/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/admissionregistration/interface.go
Apache-2.0
func (g *group) V1alpha1() v1alpha1.Interface { return v1alpha1.New(g.factory, g.namespace, g.tweakListOptions) }
V1alpha1 returns a new v1alpha1.Interface.
V1alpha1
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/admissionregistration/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/admissionregistration/interface.go
Apache-2.0
func (g *group) V1beta1() v1beta1.Interface { return v1beta1.New(g.factory, g.namespace, g.tweakListOptions) }
V1beta1 returns a new v1beta1.Interface.
V1beta1
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/admissionregistration/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/admissionregistration/interface.go
Apache-2.0
func NewMutatingWebhookConfigurationInformer(client kubernetes.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer { return NewFilteredMutatingWebhookConfigurationInformer(client, resyncPeriod, indexers, nil) }
NewMutatingWebhookConfigurationInformer constructs a new informer for MutatingWebhookConfiguration 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.
NewMutatingWebhookConfigurationInformer
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/admissionregistration/v1beta1/mutatingwebhookconfiguration.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/admissionregistration/v1beta1/mutatingwebhookconfiguration.go
Apache-2.0
func NewFilteredMutatingWebhookConfigurationInformer(client kubernetes.Interface, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer { return cache.NewSharedIndexInformer( &cache.ListWatch{ ListFunc: func(options v1.ListOptions) (runtime.Object, error) { if tweakListOptions != nil { tweakListOptions(&options) } return client.AdmissionregistrationV1beta1().MutatingWebhookConfigurations().List(context.TODO(), options) }, WatchFunc: func(options v1.ListOptions) (watch.Interface, error) { if tweakListOptions != nil { tweakListOptions(&options) } return client.AdmissionregistrationV1beta1().MutatingWebhookConfigurations().Watch(context.TODO(), options) }, }, &admissionregistrationv1beta1.MutatingWebhookConfiguration{}, resyncPeriod, indexers, ) }
NewFilteredMutatingWebhookConfigurationInformer constructs a new informer for MutatingWebhookConfiguration 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.
NewFilteredMutatingWebhookConfigurationInformer
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/admissionregistration/v1beta1/mutatingwebhookconfiguration.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/admissionregistration/v1beta1/mutatingwebhookconfiguration.go
Apache-2.0
func NewValidatingWebhookConfigurationInformer(client kubernetes.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer { return NewFilteredValidatingWebhookConfigurationInformer(client, resyncPeriod, indexers, nil) }
NewValidatingWebhookConfigurationInformer constructs a new informer for ValidatingWebhookConfiguration 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.
NewValidatingWebhookConfigurationInformer
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/admissionregistration/v1beta1/validatingwebhookconfiguration.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/admissionregistration/v1beta1/validatingwebhookconfiguration.go
Apache-2.0
func NewFilteredValidatingWebhookConfigurationInformer(client kubernetes.Interface, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer { return cache.NewSharedIndexInformer( &cache.ListWatch{ ListFunc: func(options v1.ListOptions) (runtime.Object, error) { if tweakListOptions != nil { tweakListOptions(&options) } return client.AdmissionregistrationV1beta1().ValidatingWebhookConfigurations().List(context.TODO(), options) }, WatchFunc: func(options v1.ListOptions) (watch.Interface, error) { if tweakListOptions != nil { tweakListOptions(&options) } return client.AdmissionregistrationV1beta1().ValidatingWebhookConfigurations().Watch(context.TODO(), options) }, }, &admissionregistrationv1beta1.ValidatingWebhookConfiguration{}, resyncPeriod, indexers, ) }
NewFilteredValidatingWebhookConfigurationInformer constructs a new informer for ValidatingWebhookConfiguration 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.
NewFilteredValidatingWebhookConfigurationInformer
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/admissionregistration/v1beta1/validatingwebhookconfiguration.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/admissionregistration/v1beta1/validatingwebhookconfiguration.go
Apache-2.0
func NewValidatingAdmissionPolicyInformer(client kubernetes.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer { return NewFilteredValidatingAdmissionPolicyInformer(client, resyncPeriod, indexers, nil) }
NewValidatingAdmissionPolicyInformer constructs a new informer for ValidatingAdmissionPolicy 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.
NewValidatingAdmissionPolicyInformer
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/admissionregistration/v1beta1/validatingadmissionpolicy.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/admissionregistration/v1beta1/validatingadmissionpolicy.go
Apache-2.0
func NewFilteredValidatingAdmissionPolicyInformer(client kubernetes.Interface, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer { return cache.NewSharedIndexInformer( &cache.ListWatch{ ListFunc: func(options v1.ListOptions) (runtime.Object, error) { if tweakListOptions != nil { tweakListOptions(&options) } return client.AdmissionregistrationV1beta1().ValidatingAdmissionPolicies().List(context.TODO(), options) }, WatchFunc: func(options v1.ListOptions) (watch.Interface, error) { if tweakListOptions != nil { tweakListOptions(&options) } return client.AdmissionregistrationV1beta1().ValidatingAdmissionPolicies().Watch(context.TODO(), options) }, }, &admissionregistrationv1beta1.ValidatingAdmissionPolicy{}, resyncPeriod, indexers, ) }
NewFilteredValidatingAdmissionPolicyInformer constructs a new informer for ValidatingAdmissionPolicy 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.
NewFilteredValidatingAdmissionPolicyInformer
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/admissionregistration/v1beta1/validatingadmissionpolicy.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/admissionregistration/v1beta1/validatingadmissionpolicy.go
Apache-2.0
func NewValidatingAdmissionPolicyBindingInformer(client kubernetes.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer { return NewFilteredValidatingAdmissionPolicyBindingInformer(client, resyncPeriod, indexers, nil) }
NewValidatingAdmissionPolicyBindingInformer constructs a new informer for ValidatingAdmissionPolicyBinding 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.
NewValidatingAdmissionPolicyBindingInformer
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/admissionregistration/v1beta1/validatingadmissionpolicybinding.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/admissionregistration/v1beta1/validatingadmissionpolicybinding.go
Apache-2.0
func NewFilteredValidatingAdmissionPolicyBindingInformer(client kubernetes.Interface, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer { return cache.NewSharedIndexInformer( &cache.ListWatch{ ListFunc: func(options v1.ListOptions) (runtime.Object, error) { if tweakListOptions != nil { tweakListOptions(&options) } return client.AdmissionregistrationV1beta1().ValidatingAdmissionPolicyBindings().List(context.TODO(), options) }, WatchFunc: func(options v1.ListOptions) (watch.Interface, error) { if tweakListOptions != nil { tweakListOptions(&options) } return client.AdmissionregistrationV1beta1().ValidatingAdmissionPolicyBindings().Watch(context.TODO(), options) }, }, &admissionregistrationv1beta1.ValidatingAdmissionPolicyBinding{}, resyncPeriod, indexers, ) }
NewFilteredValidatingAdmissionPolicyBindingInformer constructs a new informer for ValidatingAdmissionPolicyBinding 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.
NewFilteredValidatingAdmissionPolicyBindingInformer
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/admissionregistration/v1beta1/validatingadmissionpolicybinding.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/admissionregistration/v1beta1/validatingadmissionpolicybinding.go
Apache-2.0
func New(f internalinterfaces.SharedInformerFactory, namespace string, tweakListOptions internalinterfaces.TweakListOptionsFunc) Interface { return &version{factory: f, namespace: namespace, tweakListOptions: tweakListOptions} }
New returns a new Interface.
New
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/admissionregistration/v1beta1/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/admissionregistration/v1beta1/interface.go
Apache-2.0
func (v *version) MutatingWebhookConfigurations() MutatingWebhookConfigurationInformer { return &mutatingWebhookConfigurationInformer{factory: v.factory, tweakListOptions: v.tweakListOptions} }
MutatingWebhookConfigurations returns a MutatingWebhookConfigurationInformer.
MutatingWebhookConfigurations
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/admissionregistration/v1beta1/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/admissionregistration/v1beta1/interface.go
Apache-2.0
func (v *version) ValidatingAdmissionPolicies() ValidatingAdmissionPolicyInformer { return &validatingAdmissionPolicyInformer{factory: v.factory, tweakListOptions: v.tweakListOptions} }
ValidatingAdmissionPolicies returns a ValidatingAdmissionPolicyInformer.
ValidatingAdmissionPolicies
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/admissionregistration/v1beta1/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/admissionregistration/v1beta1/interface.go
Apache-2.0
func (v *version) ValidatingAdmissionPolicyBindings() ValidatingAdmissionPolicyBindingInformer { return &validatingAdmissionPolicyBindingInformer{factory: v.factory, tweakListOptions: v.tweakListOptions} }
ValidatingAdmissionPolicyBindings returns a ValidatingAdmissionPolicyBindingInformer.
ValidatingAdmissionPolicyBindings
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/admissionregistration/v1beta1/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/admissionregistration/v1beta1/interface.go
Apache-2.0
func (v *version) ValidatingWebhookConfigurations() ValidatingWebhookConfigurationInformer { return &validatingWebhookConfigurationInformer{factory: v.factory, tweakListOptions: v.tweakListOptions} }
ValidatingWebhookConfigurations returns a ValidatingWebhookConfigurationInformer.
ValidatingWebhookConfigurations
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/admissionregistration/v1beta1/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/admissionregistration/v1beta1/interface.go
Apache-2.0
func NewMutatingWebhookConfigurationInformer(client kubernetes.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer { return NewFilteredMutatingWebhookConfigurationInformer(client, resyncPeriod, indexers, nil) }
NewMutatingWebhookConfigurationInformer constructs a new informer for MutatingWebhookConfiguration 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.
NewMutatingWebhookConfigurationInformer
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/admissionregistration/v1/mutatingwebhookconfiguration.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/admissionregistration/v1/mutatingwebhookconfiguration.go
Apache-2.0
func NewFilteredMutatingWebhookConfigurationInformer(client kubernetes.Interface, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer { return cache.NewSharedIndexInformer( &cache.ListWatch{ ListFunc: func(options metav1.ListOptions) (runtime.Object, error) { if tweakListOptions != nil { tweakListOptions(&options) } return client.AdmissionregistrationV1().MutatingWebhookConfigurations().List(context.TODO(), options) }, WatchFunc: func(options metav1.ListOptions) (watch.Interface, error) { if tweakListOptions != nil { tweakListOptions(&options) } return client.AdmissionregistrationV1().MutatingWebhookConfigurations().Watch(context.TODO(), options) }, }, &admissionregistrationv1.MutatingWebhookConfiguration{}, resyncPeriod, indexers, ) }
NewFilteredMutatingWebhookConfigurationInformer constructs a new informer for MutatingWebhookConfiguration 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.
NewFilteredMutatingWebhookConfigurationInformer
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/admissionregistration/v1/mutatingwebhookconfiguration.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/admissionregistration/v1/mutatingwebhookconfiguration.go
Apache-2.0
func NewValidatingWebhookConfigurationInformer(client kubernetes.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer { return NewFilteredValidatingWebhookConfigurationInformer(client, resyncPeriod, indexers, nil) }
NewValidatingWebhookConfigurationInformer constructs a new informer for ValidatingWebhookConfiguration 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.
NewValidatingWebhookConfigurationInformer
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/admissionregistration/v1/validatingwebhookconfiguration.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/admissionregistration/v1/validatingwebhookconfiguration.go
Apache-2.0
func NewFilteredValidatingWebhookConfigurationInformer(client kubernetes.Interface, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer { return cache.NewSharedIndexInformer( &cache.ListWatch{ ListFunc: func(options metav1.ListOptions) (runtime.Object, error) { if tweakListOptions != nil { tweakListOptions(&options) } return client.AdmissionregistrationV1().ValidatingWebhookConfigurations().List(context.TODO(), options) }, WatchFunc: func(options metav1.ListOptions) (watch.Interface, error) { if tweakListOptions != nil { tweakListOptions(&options) } return client.AdmissionregistrationV1().ValidatingWebhookConfigurations().Watch(context.TODO(), options) }, }, &admissionregistrationv1.ValidatingWebhookConfiguration{}, resyncPeriod, indexers, ) }
NewFilteredValidatingWebhookConfigurationInformer constructs a new informer for ValidatingWebhookConfiguration 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.
NewFilteredValidatingWebhookConfigurationInformer
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/admissionregistration/v1/validatingwebhookconfiguration.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/admissionregistration/v1/validatingwebhookconfiguration.go
Apache-2.0
func New(f internalinterfaces.SharedInformerFactory, namespace string, tweakListOptions internalinterfaces.TweakListOptionsFunc) Interface { return &version{factory: f, namespace: namespace, tweakListOptions: tweakListOptions} }
New returns a new Interface.
New
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/admissionregistration/v1/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/admissionregistration/v1/interface.go
Apache-2.0
func (v *version) MutatingWebhookConfigurations() MutatingWebhookConfigurationInformer { return &mutatingWebhookConfigurationInformer{factory: v.factory, tweakListOptions: v.tweakListOptions} }
MutatingWebhookConfigurations returns a MutatingWebhookConfigurationInformer.
MutatingWebhookConfigurations
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/admissionregistration/v1/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/admissionregistration/v1/interface.go
Apache-2.0
func (v *version) ValidatingWebhookConfigurations() ValidatingWebhookConfigurationInformer { return &validatingWebhookConfigurationInformer{factory: v.factory, tweakListOptions: v.tweakListOptions} }
ValidatingWebhookConfigurations returns a ValidatingWebhookConfigurationInformer.
ValidatingWebhookConfigurations
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/admissionregistration/v1/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/admissionregistration/v1/interface.go
Apache-2.0
func NewValidatingAdmissionPolicyInformer(client kubernetes.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer { return NewFilteredValidatingAdmissionPolicyInformer(client, resyncPeriod, indexers, nil) }
NewValidatingAdmissionPolicyInformer constructs a new informer for ValidatingAdmissionPolicy 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.
NewValidatingAdmissionPolicyInformer
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/admissionregistration/v1alpha1/validatingadmissionpolicy.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/admissionregistration/v1alpha1/validatingadmissionpolicy.go
Apache-2.0
func NewFilteredValidatingAdmissionPolicyInformer(client kubernetes.Interface, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer { return cache.NewSharedIndexInformer( &cache.ListWatch{ ListFunc: func(options v1.ListOptions) (runtime.Object, error) { if tweakListOptions != nil { tweakListOptions(&options) } return client.AdmissionregistrationV1alpha1().ValidatingAdmissionPolicies().List(context.TODO(), options) }, WatchFunc: func(options v1.ListOptions) (watch.Interface, error) { if tweakListOptions != nil { tweakListOptions(&options) } return client.AdmissionregistrationV1alpha1().ValidatingAdmissionPolicies().Watch(context.TODO(), options) }, }, &admissionregistrationv1alpha1.ValidatingAdmissionPolicy{}, resyncPeriod, indexers, ) }
NewFilteredValidatingAdmissionPolicyInformer constructs a new informer for ValidatingAdmissionPolicy 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.
NewFilteredValidatingAdmissionPolicyInformer
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/admissionregistration/v1alpha1/validatingadmissionpolicy.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/admissionregistration/v1alpha1/validatingadmissionpolicy.go
Apache-2.0
func NewValidatingAdmissionPolicyBindingInformer(client kubernetes.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer { return NewFilteredValidatingAdmissionPolicyBindingInformer(client, resyncPeriod, indexers, nil) }
NewValidatingAdmissionPolicyBindingInformer constructs a new informer for ValidatingAdmissionPolicyBinding 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.
NewValidatingAdmissionPolicyBindingInformer
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/admissionregistration/v1alpha1/validatingadmissionpolicybinding.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/admissionregistration/v1alpha1/validatingadmissionpolicybinding.go
Apache-2.0
func NewFilteredValidatingAdmissionPolicyBindingInformer(client kubernetes.Interface, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer { return cache.NewSharedIndexInformer( &cache.ListWatch{ ListFunc: func(options v1.ListOptions) (runtime.Object, error) { if tweakListOptions != nil { tweakListOptions(&options) } return client.AdmissionregistrationV1alpha1().ValidatingAdmissionPolicyBindings().List(context.TODO(), options) }, WatchFunc: func(options v1.ListOptions) (watch.Interface, error) { if tweakListOptions != nil { tweakListOptions(&options) } return client.AdmissionregistrationV1alpha1().ValidatingAdmissionPolicyBindings().Watch(context.TODO(), options) }, }, &admissionregistrationv1alpha1.ValidatingAdmissionPolicyBinding{}, resyncPeriod, indexers, ) }
NewFilteredValidatingAdmissionPolicyBindingInformer constructs a new informer for ValidatingAdmissionPolicyBinding 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.
NewFilteredValidatingAdmissionPolicyBindingInformer
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/admissionregistration/v1alpha1/validatingadmissionpolicybinding.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/admissionregistration/v1alpha1/validatingadmissionpolicybinding.go
Apache-2.0
func New(f internalinterfaces.SharedInformerFactory, namespace string, tweakListOptions internalinterfaces.TweakListOptionsFunc) Interface { return &version{factory: f, namespace: namespace, tweakListOptions: tweakListOptions} }
New returns a new Interface.
New
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/admissionregistration/v1alpha1/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/admissionregistration/v1alpha1/interface.go
Apache-2.0
func (v *version) ValidatingAdmissionPolicies() ValidatingAdmissionPolicyInformer { return &validatingAdmissionPolicyInformer{factory: v.factory, tweakListOptions: v.tweakListOptions} }
ValidatingAdmissionPolicies returns a ValidatingAdmissionPolicyInformer.
ValidatingAdmissionPolicies
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/admissionregistration/v1alpha1/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/admissionregistration/v1alpha1/interface.go
Apache-2.0
func (v *version) ValidatingAdmissionPolicyBindings() ValidatingAdmissionPolicyBindingInformer { return &validatingAdmissionPolicyBindingInformer{factory: v.factory, tweakListOptions: v.tweakListOptions} }
ValidatingAdmissionPolicyBindings returns a ValidatingAdmissionPolicyBindingInformer.
ValidatingAdmissionPolicyBindings
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/admissionregistration/v1alpha1/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/admissionregistration/v1alpha1/interface.go
Apache-2.0
func New(f internalinterfaces.SharedInformerFactory, namespace string, tweakListOptions internalinterfaces.TweakListOptionsFunc) Interface { return &group{factory: f, namespace: namespace, tweakListOptions: tweakListOptions} }
New returns a new Interface.
New
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/certificates/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/certificates/interface.go
Apache-2.0
func (g *group) V1() v1.Interface { return v1.New(g.factory, g.namespace, g.tweakListOptions) }
V1 returns a new v1.Interface.
V1
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/certificates/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/certificates/interface.go
Apache-2.0
func (g *group) V1alpha1() v1alpha1.Interface { return v1alpha1.New(g.factory, g.namespace, g.tweakListOptions) }
V1alpha1 returns a new v1alpha1.Interface.
V1alpha1
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/certificates/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/certificates/interface.go
Apache-2.0
func (g *group) V1beta1() v1beta1.Interface { return v1beta1.New(g.factory, g.namespace, g.tweakListOptions) }
V1beta1 returns a new v1beta1.Interface.
V1beta1
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/certificates/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/certificates/interface.go
Apache-2.0
func NewCertificateSigningRequestInformer(client kubernetes.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer { return NewFilteredCertificateSigningRequestInformer(client, resyncPeriod, indexers, nil) }
NewCertificateSigningRequestInformer constructs a new informer for CertificateSigningRequest 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.
NewCertificateSigningRequestInformer
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/certificates/v1beta1/certificatesigningrequest.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/certificates/v1beta1/certificatesigningrequest.go
Apache-2.0
func NewFilteredCertificateSigningRequestInformer(client kubernetes.Interface, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer { return cache.NewSharedIndexInformer( &cache.ListWatch{ ListFunc: func(options v1.ListOptions) (runtime.Object, error) { if tweakListOptions != nil { tweakListOptions(&options) } return client.CertificatesV1beta1().CertificateSigningRequests().List(context.TODO(), options) }, WatchFunc: func(options v1.ListOptions) (watch.Interface, error) { if tweakListOptions != nil { tweakListOptions(&options) } return client.CertificatesV1beta1().CertificateSigningRequests().Watch(context.TODO(), options) }, }, &certificatesv1beta1.CertificateSigningRequest{}, resyncPeriod, indexers, ) }
NewFilteredCertificateSigningRequestInformer constructs a new informer for CertificateSigningRequest 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.
NewFilteredCertificateSigningRequestInformer
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/certificates/v1beta1/certificatesigningrequest.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/certificates/v1beta1/certificatesigningrequest.go
Apache-2.0
func New(f internalinterfaces.SharedInformerFactory, namespace string, tweakListOptions internalinterfaces.TweakListOptionsFunc) Interface { return &version{factory: f, namespace: namespace, tweakListOptions: tweakListOptions} }
New returns a new Interface.
New
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/certificates/v1beta1/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/certificates/v1beta1/interface.go
Apache-2.0
func (v *version) CertificateSigningRequests() CertificateSigningRequestInformer { return &certificateSigningRequestInformer{factory: v.factory, tweakListOptions: v.tweakListOptions} }
CertificateSigningRequests returns a CertificateSigningRequestInformer.
CertificateSigningRequests
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/certificates/v1beta1/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/certificates/v1beta1/interface.go
Apache-2.0
func NewCertificateSigningRequestInformer(client kubernetes.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer { return NewFilteredCertificateSigningRequestInformer(client, resyncPeriod, indexers, nil) }
NewCertificateSigningRequestInformer constructs a new informer for CertificateSigningRequest 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.
NewCertificateSigningRequestInformer
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/certificates/v1/certificatesigningrequest.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/certificates/v1/certificatesigningrequest.go
Apache-2.0
func NewFilteredCertificateSigningRequestInformer(client kubernetes.Interface, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer { return cache.NewSharedIndexInformer( &cache.ListWatch{ ListFunc: func(options metav1.ListOptions) (runtime.Object, error) { if tweakListOptions != nil { tweakListOptions(&options) } return client.CertificatesV1().CertificateSigningRequests().List(context.TODO(), options) }, WatchFunc: func(options metav1.ListOptions) (watch.Interface, error) { if tweakListOptions != nil { tweakListOptions(&options) } return client.CertificatesV1().CertificateSigningRequests().Watch(context.TODO(), options) }, }, &certificatesv1.CertificateSigningRequest{}, resyncPeriod, indexers, ) }
NewFilteredCertificateSigningRequestInformer constructs a new informer for CertificateSigningRequest 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.
NewFilteredCertificateSigningRequestInformer
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/certificates/v1/certificatesigningrequest.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/certificates/v1/certificatesigningrequest.go
Apache-2.0
func New(f internalinterfaces.SharedInformerFactory, namespace string, tweakListOptions internalinterfaces.TweakListOptionsFunc) Interface { return &version{factory: f, namespace: namespace, tweakListOptions: tweakListOptions} }
New returns a new Interface.
New
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/certificates/v1/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/certificates/v1/interface.go
Apache-2.0
func (v *version) CertificateSigningRequests() CertificateSigningRequestInformer { return &certificateSigningRequestInformer{factory: v.factory, tweakListOptions: v.tweakListOptions} }
CertificateSigningRequests returns a CertificateSigningRequestInformer.
CertificateSigningRequests
go
k8snetworkplumbingwg/multus-cni
vendor/k8s.io/client-go/informers/certificates/v1/interface.go
https://github.com/k8snetworkplumbingwg/multus-cni/blob/master/vendor/k8s.io/client-go/informers/certificates/v1/interface.go
Apache-2.0