@@ -4,53 +4,38 @@ import (
4
4
"fmt"
5
5
"reflect"
6
6
7
- "k8s.io/kubernetes/pkg/api"
8
7
"k8s.io/kubernetes/pkg/client/cache"
9
8
clientset "k8s.io/kubernetes/pkg/client/clientset_generated/internalclientset"
10
- "k8s.io/kubernetes/pkg/controller/informers"
11
9
kresourcequota "k8s.io/kubernetes/pkg/controller/resourcequota"
12
- "k8s.io/kubernetes/pkg/runtime"
13
- "k8s.io/kubernetes/pkg/watch"
14
10
15
11
osclient "github.com/openshift/origin/pkg/client"
12
+ "github.com/openshift/origin/pkg/controller/shared"
16
13
imageapi "github.com/openshift/origin/pkg/image/api"
17
14
)
18
15
19
16
// replenishmentControllerFactory implements ReplenishmentControllerFactory
20
17
type replenishmentControllerFactory struct {
21
- osClient osclient. Interface
18
+ isInformer shared. ImageStreamInformer
22
19
}
23
20
24
21
var _ kresourcequota.ReplenishmentControllerFactory = & replenishmentControllerFactory {}
25
22
26
23
// NewReplenishmentControllerFactory returns a factory that knows how to build controllers
27
24
// to replenish resources when updated or deleted
28
- func NewReplenishmentControllerFactory (osClient osclient. Interface ) kresourcequota.ReplenishmentControllerFactory {
25
+ func NewReplenishmentControllerFactory (isInformer shared. ImageStreamInformer ) kresourcequota.ReplenishmentControllerFactory {
29
26
return & replenishmentControllerFactory {
30
- osClient : osClient ,
27
+ isInformer : isInformer ,
31
28
}
32
29
}
33
30
34
31
func (r * replenishmentControllerFactory ) NewController (options * kresourcequota.ReplenishmentControllerOptions ) (cache.ControllerInterface , error ) {
35
32
switch options .GroupKind {
36
33
case imageapi .Kind ("ImageStream" ):
37
- _ , result := cache .NewInformer (
38
- & cache.ListWatch {
39
- ListFunc : func (options api.ListOptions ) (runtime.Object , error ) {
40
- return r .osClient .ImageStreams (api .NamespaceAll ).List (options )
41
- },
42
- WatchFunc : func (options api.ListOptions ) (watch.Interface , error ) {
43
- return r .osClient .ImageStreams (api .NamespaceAll ).Watch (options )
44
- },
45
- },
46
- & imageapi.ImageStream {},
47
- options .ResyncPeriod (),
48
- cache.ResourceEventHandlerFuncs {
49
- UpdateFunc : ImageStreamReplenishmentUpdateFunc (options ),
50
- DeleteFunc : kresourcequota .ObjectReplenishmentDeleteFunc (options ),
51
- },
52
- )
53
- return result , nil
34
+ r .isInformer .Informer ().AddEventHandler (cache.ResourceEventHandlerFuncs {
35
+ UpdateFunc : ImageStreamReplenishmentUpdateFunc (options ),
36
+ DeleteFunc : kresourcequota .ObjectReplenishmentDeleteFunc (options ),
37
+ })
38
+ return r .isInformer .Informer ().GetController (), nil
54
39
default :
55
40
return nil , fmt .Errorf ("no replenishment controller available for %s" , options .GroupKind )
56
41
}
@@ -68,9 +53,9 @@ func ImageStreamReplenishmentUpdateFunc(options *kresourcequota.ReplenishmentCon
68
53
}
69
54
70
55
// NewAllResourceReplenishmentControllerFactory returns a ReplenishmentControllerFactory that knows how to replenish all known resources
71
- func NewAllResourceReplenishmentControllerFactory (informerFactory informers. SharedInformerFactory , osClient osclient.Interface , kubeClientSet clientset.Interface ) kresourcequota.ReplenishmentControllerFactory {
56
+ func NewAllResourceReplenishmentControllerFactory (informerFactory shared. InformerFactory , osClient osclient.Interface , kubeClientSet clientset.Interface ) kresourcequota.ReplenishmentControllerFactory {
72
57
return kresourcequota.UnionReplenishmentControllerFactory {
73
- kresourcequota .NewReplenishmentControllerFactory (informerFactory , kubeClientSet ),
74
- NewReplenishmentControllerFactory (osClient ),
58
+ kresourcequota .NewReplenishmentControllerFactory (informerFactory . KubernetesInformers () , kubeClientSet ),
59
+ NewReplenishmentControllerFactory (informerFactory . ImageStreams () ),
75
60
}
76
61
}
0 commit comments