@@ -10,15 +10,13 @@ import (
10
10
"github.com/golang/glog"
11
11
12
12
"k8s.io/api/core/v1"
13
- metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
14
- "k8s.io/apimachinery/pkg/fields"
15
13
"k8s.io/apimachinery/pkg/runtime"
16
14
utilruntime "k8s.io/apimachinery/pkg/util/runtime"
17
15
"k8s.io/apimachinery/pkg/util/sets"
18
16
"k8s.io/apimachinery/pkg/util/wait"
19
- "k8s.io/apimachinery/pkg/watch"
20
17
informers "k8s.io/client-go/informers/core/v1"
21
18
kclientset "k8s.io/client-go/kubernetes"
19
+ listers "k8s.io/client-go/listers/core/v1"
22
20
"k8s.io/client-go/tools/cache"
23
21
"k8s.io/client-go/util/workqueue"
24
22
"k8s.io/kubernetes/pkg/controller"
@@ -31,54 +29,62 @@ type DockerRegistryServiceControllerOptions struct {
31
29
// If zero, re-list will be delayed as long as possible
32
30
Resync time.Duration
33
31
34
- RegistryNamespace string
35
- RegistryServiceName string
36
-
37
32
DockercfgController * DockercfgController
38
33
39
34
// DockerURLsInitialized is used to send a signal to the DockercfgController that it has the correct set of docker urls
40
35
DockerURLsInitialized chan struct {}
41
36
}
42
37
38
+ type serviceLocation struct {
39
+ namespace string
40
+ name string
41
+ }
42
+
43
+ var serviceLocations = []serviceLocation {
44
+ {namespace : "default" , name : "docker-registry" },
45
+ {namespace : "openshift-image-registry" , name : "registry" },
46
+ }
47
+
43
48
// NewDockerRegistryServiceController returns a new *DockerRegistryServiceController.
44
- func NewDockerRegistryServiceController (secrets informers.SecretInformer , cl kclientset.Interface , options DockerRegistryServiceControllerOptions ) * DockerRegistryServiceController {
49
+ func NewDockerRegistryServiceController (secrets informers.SecretInformer , serviceInformer informers. ServiceInformer , cl kclientset.Interface , options DockerRegistryServiceControllerOptions ) * DockerRegistryServiceController {
45
50
e := & DockerRegistryServiceController {
46
51
client : cl ,
47
52
dockercfgController : options .DockercfgController ,
48
53
registryLocationQueue : workqueue .NewRateLimitingQueue (workqueue .DefaultControllerRateLimiter ()),
49
54
secretsToUpdate : workqueue .NewRateLimitingQueue (workqueue .DefaultControllerRateLimiter ()),
50
- serviceName : options .RegistryServiceName ,
51
- serviceNamespace : options .RegistryNamespace ,
52
55
dockerURLsInitialized : options .DockerURLsInitialized ,
53
56
}
54
57
55
- // does not use shared informers because we're only watching one item
56
- e .serviceCache , e .serviceController = cache .NewInformer (
57
- & cache.ListWatch {
58
- ListFunc : func (opts metav1.ListOptions ) (runtime.Object , error ) {
59
- opts .FieldSelector = fields .OneTermEqualSelector ("metadata.name" , options .RegistryServiceName ).String ()
60
- return e .client .Core ().Services (options .RegistryNamespace ).List (opts )
58
+ // we're only watching two of these, but we already watch all services for the service serving cert signer
59
+ // and this correctly handles namespaces coming and going
60
+ serviceInformer .Informer ().AddEventHandler (
61
+ cache.FilteringResourceEventHandler {
62
+ FilterFunc : func (obj interface {}) bool {
63
+ switch t := obj .(type ) {
64
+ case * v1.Service :
65
+ for _ , location := range serviceLocations {
66
+ if t .Namespace == location .namespace && t .Name == location .name {
67
+ return true
68
+ }
69
+ }
70
+ }
71
+ return false
61
72
},
62
- WatchFunc : func (opts metav1.ListOptions ) (watch.Interface , error ) {
63
- opts .FieldSelector = fields .OneTermEqualSelector ("metadata.name" , options .RegistryServiceName ).String ()
64
- return e .client .Core ().Services (options .RegistryNamespace ).Watch (opts )
65
- },
66
- },
67
- & v1.Service {},
68
- options .Resync ,
69
- cache.ResourceEventHandlerFuncs {
70
- AddFunc : func (obj interface {}) {
71
- e .enqueueRegistryLocationQueue ()
72
- },
73
- UpdateFunc : func (old , cur interface {}) {
74
- e .enqueueRegistryLocationQueue ()
75
- },
76
- DeleteFunc : func (obj interface {}) {
77
- e .enqueueRegistryLocationQueue ()
78
- },
79
- },
73
+ Handler : cache.ResourceEventHandlerFuncs {
74
+ AddFunc : func (obj interface {}) {
75
+ e .enqueueRegistryLocationQueue ()
76
+ },
77
+ UpdateFunc : func (old , cur interface {}) {
78
+ e .enqueueRegistryLocationQueue ()
79
+ },
80
+ DeleteFunc : func (obj interface {}) {
81
+ e .enqueueRegistryLocationQueue ()
82
+ },
83
+ }},
80
84
)
81
- e .servicesSynced = e .serviceController .HasSynced
85
+ e .servicesSynced = serviceInformer .Informer ().HasSynced
86
+ e .serviceLister = serviceInformer .Lister ()
87
+
82
88
e .syncRegistryLocationHandler = e .syncRegistryLocationChange
83
89
84
90
e .secretCache = secrets .Informer ().GetIndexer ()
@@ -92,14 +98,11 @@ func NewDockerRegistryServiceController(secrets informers.SecretInformer, cl kcl
92
98
type DockerRegistryServiceController struct {
93
99
client kclientset.Interface
94
100
95
- serviceName string
96
- serviceNamespace string
97
-
98
101
dockercfgController * DockercfgController
99
102
100
- serviceController cache. Controller
101
- serviceCache cache. Store
102
- servicesSynced func () bool
103
+ serviceLister listers. ServiceLister
104
+ servicesSynced func () bool
105
+
103
106
syncRegistryLocationHandler func (key string ) error
104
107
105
108
secretCache cache.Store
@@ -119,8 +122,6 @@ func (e *DockerRegistryServiceController) Run(workers int, stopCh <-chan struct{
119
122
defer utilruntime .HandleCrash ()
120
123
defer e .registryLocationQueue .ShutDown ()
121
124
122
- go e .serviceController .Run (stopCh )
123
-
124
125
// Wait for the store to sync before starting any work in this controller.
125
126
ready := make (chan struct {})
126
127
go e .waitForDockerURLs (ready , stopCh )
@@ -212,19 +213,18 @@ func (e *DockerRegistryServiceController) watchForDockerURLChanges() {
212
213
213
214
// getDockerRegistryLocations returns the dns form and the ip form of the secret
214
215
func (e * DockerRegistryServiceController ) getDockerRegistryLocations () []string {
215
- key , err := controller . KeyFunc ( & v1. Service { ObjectMeta : metav1. ObjectMeta { Name : e . serviceName , Namespace : e . serviceNamespace }})
216
- if err != nil {
217
- return [] string {}
216
+ ret := [] string {}
217
+ for _ , location := range serviceLocations {
218
+ ret = append ( ret , getDockerRegistryLocations ( e . serviceLister , location ) ... )
218
219
}
220
+ return ret
221
+ }
219
222
220
- obj , exists , err := e .serviceCache .GetByKey (key )
223
+ func getDockerRegistryLocations (lister listers.ServiceLister , location serviceLocation ) []string {
224
+ service , err := lister .Services (location .namespace ).Get (location .name )
221
225
if err != nil {
222
226
return []string {}
223
227
}
224
- if ! exists {
225
- return []string {}
226
- }
227
- service := obj .(* v1.Service )
228
228
229
229
hasClusterIP := (len (service .Spec .ClusterIP ) > 0 ) && (net .ParseIP (service .Spec .ClusterIP ) != nil )
230
230
if hasClusterIP && len (service .Spec .Ports ) > 0 {
@@ -239,8 +239,10 @@ func (e *DockerRegistryServiceController) getDockerRegistryLocations() []string
239
239
240
240
// syncRegistryLocationChange goes through all service account dockercfg secrets and updates them to point at a new docker-registry location
241
241
func (e * DockerRegistryServiceController ) syncRegistryLocationChange (key string ) error {
242
- newDockerRegistryLocations := sets .NewString (e .getDockerRegistryLocations ()... )
243
- if e .getRegistryURLs ().Equal (newDockerRegistryLocations ) {
242
+ newLocations := e .getDockerRegistryLocations ()
243
+ newDockerRegistryLocations := sets .NewString (newLocations ... )
244
+ existingURLs := e .getRegistryURLs ()
245
+ if existingURLs .Equal (newDockerRegistryLocations ) {
244
246
glog .V (4 ).Infof ("No effective update: %v" , newDockerRegistryLocations )
245
247
return nil
246
248
}
@@ -266,6 +268,7 @@ func (e *DockerRegistryServiceController) syncRegistryLocationChange(key string)
266
268
utilruntime .HandleError (fmt .Errorf ("couldn't get key for object %#v: %v" , obj , err ))
267
269
continue
268
270
}
271
+
269
272
e .secretsToUpdate .Add (key )
270
273
}
271
274
0 commit comments