@@ -31,9 +31,6 @@ type DockerRegistryServiceControllerOptions struct {
31
31
// If zero, re-list will be delayed as long as possible
32
32
Resync time.Duration
33
33
34
- RegistryNamespace string
35
- RegistryServiceName string
36
-
37
34
DockercfgController * DockercfgController
38
35
39
36
// DockerURLsInitialized is used to send a signal to the DockercfgController that it has the correct set of docker urls
@@ -43,29 +40,43 @@ type DockerRegistryServiceControllerOptions struct {
43
40
// NewDockerRegistryServiceController returns a new *DockerRegistryServiceController.
44
41
func NewDockerRegistryServiceController (secrets informers.SecretInformer , cl kclientset.Interface , options DockerRegistryServiceControllerOptions ) * DockerRegistryServiceController {
45
42
e := & DockerRegistryServiceController {
46
- client : cl ,
47
- dockercfgController : options .DockercfgController ,
48
- registryLocationQueue : workqueue .NewRateLimitingQueue (workqueue .DefaultControllerRateLimiter ()),
49
- secretsToUpdate : workqueue .NewRateLimitingQueue (workqueue .DefaultControllerRateLimiter ()),
50
- serviceName : options . RegistryServiceName ,
51
- serviceNamespace : options . RegistryNamespace ,
52
- dockerURLsInitialized : options .DockerURLsInitialized ,
43
+ client : cl ,
44
+ dockercfgController : options .DockercfgController ,
45
+ registryLocationQueue : workqueue .NewRateLimitingQueue (workqueue .DefaultControllerRateLimiter ()),
46
+ secretsToUpdate : workqueue .NewRateLimitingQueue (workqueue .DefaultControllerRateLimiter ()),
47
+ legacyServiceLocation : serviceLocation { namespace : "default" , name : "docker-registry" } ,
48
+ currentServiceLocation : serviceLocation { namespace : "openshift-image-registry" , name : "image-registry" } ,
49
+ dockerURLsInitialized : options .DockerURLsInitialized ,
53
50
}
54
51
55
52
// does not use shared informers because we're only watching one item
56
- e .serviceCache , e .serviceController = cache .NewInformer (
53
+ e .legacyServiceCache = newServiceCache (e , e .legacyServiceLocation , options .Resync )
54
+ e .currentServiceCache = newServiceCache (e , e .currentServiceLocation , options .Resync )
55
+
56
+ e .syncRegistryLocationHandler = e .syncRegistryLocationChange
57
+
58
+ e .secretCache = secrets .Informer ().GetIndexer ()
59
+ e .secretsSynced = secrets .Informer ().GetController ().HasSynced
60
+ e .syncSecretHandler = e .syncSecretUpdate
61
+
62
+ return e
63
+ }
64
+
65
+ func newServiceCache (e * DockerRegistryServiceController , location serviceLocation , resync time.Duration ) serviceCache {
66
+ ret := serviceCache {}
67
+ ret .serviceCache , ret .serviceController = cache .NewInformer (
57
68
& cache.ListWatch {
58
69
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 )
70
+ opts .FieldSelector = fields .OneTermEqualSelector ("metadata.name" , location . name ).String ()
71
+ return e .client .Core ().Services (location . namespace ).List (opts )
61
72
},
62
73
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 )
74
+ opts .FieldSelector = fields .OneTermEqualSelector ("metadata.name" , location . name ).String ()
75
+ return e .client .Core ().Services (location . namespace ).Watch (opts )
65
76
},
66
77
},
67
78
& v1.Service {},
68
- options . Resync ,
79
+ resync ,
69
80
cache.ResourceEventHandlerFuncs {
70
81
AddFunc : func (obj interface {}) {
71
82
e .enqueueRegistryLocationQueue ()
@@ -78,28 +89,34 @@ func NewDockerRegistryServiceController(secrets informers.SecretInformer, cl kcl
78
89
},
79
90
},
80
91
)
81
- e .servicesSynced = e .serviceController .HasSynced
82
- e .syncRegistryLocationHandler = e .syncRegistryLocationChange
92
+ ret .servicesSynced = ret .serviceController .HasSynced
83
93
84
- e .secretCache = secrets .Informer ().GetIndexer ()
85
- e .secretsSynced = secrets .Informer ().GetController ().HasSynced
86
- e .syncSecretHandler = e .syncSecretUpdate
94
+ return ret
95
+ }
87
96
88
- return e
97
+ type serviceLocation struct {
98
+ namespace string
99
+ name string
100
+ }
101
+
102
+ type serviceCache struct {
103
+ serviceController cache.Controller
104
+ serviceCache cache.Store
105
+ servicesSynced func () bool
89
106
}
90
107
91
108
// DockerRegistryServiceController manages ServiceToken secrets for Service objects
92
109
type DockerRegistryServiceController struct {
93
110
client kclientset.Interface
94
111
95
- serviceName string
96
- serviceNamespace string
112
+ legacyServiceLocation serviceLocation
113
+ currentServiceLocation serviceLocation
97
114
98
115
dockercfgController * DockercfgController
99
116
100
- serviceController cache. Controller
101
- serviceCache cache. Store
102
- servicesSynced func () bool
117
+ legacyServiceCache serviceCache
118
+ currentServiceCache serviceCache
119
+
103
120
syncRegistryLocationHandler func (key string ) error
104
121
105
122
secretCache cache.Store
@@ -119,7 +136,8 @@ func (e *DockerRegistryServiceController) Run(workers int, stopCh <-chan struct{
119
136
defer utilruntime .HandleCrash ()
120
137
defer e .registryLocationQueue .ShutDown ()
121
138
122
- go e .serviceController .Run (stopCh )
139
+ go e .legacyServiceCache .serviceController .Run (stopCh )
140
+ go e .currentServiceCache .serviceController .Run (stopCh )
123
141
124
142
// Wait for the store to sync before starting any work in this controller.
125
143
ready := make (chan struct {})
@@ -152,7 +170,7 @@ func (e *DockerRegistryServiceController) waitForDockerURLs(ready chan<- struct{
152
170
defer utilruntime .HandleCrash ()
153
171
154
172
// Wait for the stores to fill
155
- if ! cache .WaitForCacheSync (stopCh , e .servicesSynced , e .secretsSynced ) {
173
+ if ! cache .WaitForCacheSync (stopCh , e .legacyServiceCache . servicesSynced , e . currentServiceCache . servicesSynced , e .secretsSynced ) {
156
174
return
157
175
}
158
176
@@ -212,12 +230,19 @@ func (e *DockerRegistryServiceController) watchForDockerURLChanges() {
212
230
213
231
// getDockerRegistryLocations returns the dns form and the ip form of the secret
214
232
func (e * DockerRegistryServiceController ) getDockerRegistryLocations () []string {
215
- key , err := controller .KeyFunc (& v1.Service {ObjectMeta : metav1.ObjectMeta {Name : e .serviceName , Namespace : e .serviceNamespace }})
233
+ ret := []string {}
234
+ ret = append (ret , getDockerRegistryLocations (e .legacyServiceCache , e .legacyServiceLocation )... )
235
+ ret = append (ret , getDockerRegistryLocations (e .currentServiceCache , e .currentServiceLocation )... )
236
+ return nil
237
+ }
238
+
239
+ func getDockerRegistryLocations (cache serviceCache , location serviceLocation ) []string {
240
+ key , err := controller .KeyFunc (& v1.Service {ObjectMeta : metav1.ObjectMeta {Name : location .name , Namespace : location .namespace }})
216
241
if err != nil {
217
242
return []string {}
218
243
}
219
244
220
- obj , exists , err := e .serviceCache .GetByKey (key )
245
+ obj , exists , err := cache .serviceCache .GetByKey (key )
221
246
if err != nil {
222
247
return []string {}
223
248
}
@@ -239,7 +264,8 @@ func (e *DockerRegistryServiceController) getDockerRegistryLocations() []string
239
264
240
265
// syncRegistryLocationChange goes through all service account dockercfg secrets and updates them to point at a new docker-registry location
241
266
func (e * DockerRegistryServiceController ) syncRegistryLocationChange (key string ) error {
242
- newDockerRegistryLocations := sets .NewString (e .getDockerRegistryLocations ()... )
267
+ newLocations := e .getDockerRegistryLocations ()
268
+ newDockerRegistryLocations := sets .NewString (newLocations ... )
243
269
if e .getRegistryURLs ().Equal (newDockerRegistryLocations ) {
244
270
glog .V (4 ).Infof ("No effective update: %v" , newDockerRegistryLocations )
245
271
return nil
0 commit comments