-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathissuer.go
73 lines (61 loc) · 2.77 KB
/
issuer.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*
Copyright 2017 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
// This file was automatically generated by informer-gen
package v1alpha1
import (
certmanager_v1alpha1 "github.com/jetstack-experimental/cert-manager/pkg/apis/certmanager/v1alpha1"
clientset "github.com/jetstack-experimental/cert-manager/pkg/client/clientset"
internalinterfaces "github.com/jetstack-experimental/cert-manager/pkg/client/informers/internalinterfaces"
v1alpha1 "github.com/jetstack-experimental/cert-manager/pkg/client/listers/certmanager/v1alpha1"
v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
runtime "k8s.io/apimachinery/pkg/runtime"
watch "k8s.io/apimachinery/pkg/watch"
cache "k8s.io/client-go/tools/cache"
time "time"
)
// IssuerInformer provides access to a shared informer and lister for
// Issuers.
type IssuerInformer interface {
Informer() cache.SharedIndexInformer
Lister() v1alpha1.IssuerLister
}
type issuerInformer struct {
factory internalinterfaces.SharedInformerFactory
}
// NewIssuerInformer constructs a new informer for Issuer 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 NewIssuerInformer(client clientset.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer {
return cache.NewSharedIndexInformer(
&cache.ListWatch{
ListFunc: func(options v1.ListOptions) (runtime.Object, error) {
return client.CertmanagerV1alpha1().Issuers(namespace).List(options)
},
WatchFunc: func(options v1.ListOptions) (watch.Interface, error) {
return client.CertmanagerV1alpha1().Issuers(namespace).Watch(options)
},
},
&certmanager_v1alpha1.Issuer{},
resyncPeriod,
indexers,
)
}
func defaultIssuerInformer(client clientset.Interface, resyncPeriod time.Duration) cache.SharedIndexInformer {
return NewIssuerInformer(client, v1.NamespaceAll, resyncPeriod, cache.Indexers{cache.NamespaceIndex: cache.MetaNamespaceIndexFunc})
}
func (f *issuerInformer) Informer() cache.SharedIndexInformer {
return f.factory.InformerFor(&certmanager_v1alpha1.Issuer{}, defaultIssuerInformer)
}
func (f *issuerInformer) Lister() v1alpha1.IssuerLister {
return v1alpha1.NewIssuerLister(f.Informer().GetIndexer())
}