@@ -31,6 +31,9 @@ type DockerRegistryServiceControllerOptions struct {
31
31
32
32
DockercfgController * DockercfgController
33
33
34
+ // AdditionalRegistryURLs is a list of URLs that are always included
35
+ AdditionalRegistryURLs []string
36
+
34
37
// DockerURLsInitialized is used to send a signal to the DockercfgController that it has the correct set of docker urls
35
38
DockerURLsInitialized chan struct {}
36
39
}
@@ -48,11 +51,12 @@ var serviceLocations = []serviceLocation{
48
51
// NewDockerRegistryServiceController returns a new *DockerRegistryServiceController.
49
52
func NewDockerRegistryServiceController (secrets informers.SecretInformer , serviceInformer informers.ServiceInformer , cl kclientset.Interface , options DockerRegistryServiceControllerOptions ) * DockerRegistryServiceController {
50
53
e := & DockerRegistryServiceController {
51
- client : cl ,
52
- dockercfgController : options .DockercfgController ,
53
- registryLocationQueue : workqueue .NewRateLimitingQueue (workqueue .DefaultControllerRateLimiter ()),
54
- secretsToUpdate : workqueue .NewRateLimitingQueue (workqueue .DefaultControllerRateLimiter ()),
55
- dockerURLsInitialized : options .DockerURLsInitialized ,
54
+ client : cl ,
55
+ additionalRegistryURLs : options .AdditionalRegistryURLs ,
56
+ dockercfgController : options .DockercfgController ,
57
+ registryLocationQueue : workqueue .NewRateLimitingQueue (workqueue .DefaultControllerRateLimiter ()),
58
+ secretsToUpdate : workqueue .NewRateLimitingQueue (workqueue .DefaultControllerRateLimiter ()),
59
+ dockerURLsInitialized : options .DockerURLsInitialized ,
56
60
}
57
61
58
62
// we're only watching two of these, but we already watch all services for the service serving cert signer
@@ -98,6 +102,9 @@ func NewDockerRegistryServiceController(secrets informers.SecretInformer, servic
98
102
type DockerRegistryServiceController struct {
99
103
client kclientset.Interface
100
104
105
+ // AdditionalRegistryURLs is a list of URLs that are always included
106
+ additionalRegistryURLs []string
107
+
101
108
dockercfgController * DockercfgController
102
109
103
110
serviceLister listers.ServiceLister
@@ -127,6 +134,9 @@ func (e *DockerRegistryServiceController) Run(workers int, stopCh <-chan struct{
127
134
defer utilruntime .HandleCrash ()
128
135
defer e .registryLocationQueue .ShutDown ()
129
136
137
+ glog .Infof ("Starting DockerRegistryServiceController controller" )
138
+ defer glog .Infof ("Shutting down DockerRegistryServiceController controller" )
139
+
130
140
// Wait for the store to sync before starting any work in this controller.
131
141
ready := make (chan struct {})
132
142
go e .waitForDockerURLs (ready , stopCh )
@@ -135,14 +145,13 @@ func (e *DockerRegistryServiceController) Run(workers int, stopCh <-chan struct{
135
145
case <- stopCh :
136
146
return
137
147
}
148
+ glog .V (1 ).Infof ("caches synced" )
138
149
139
- glog .V (5 ).Infof ("Starting workers" )
140
150
go wait .Until (e .watchForDockerURLChanges , time .Second , stopCh )
141
151
for i := 0 ; i < workers ; i ++ {
142
152
go wait .Until (e .watchForDockercfgSecretUpdates , time .Second , stopCh )
143
153
}
144
154
<- stopCh
145
- glog .V (1 ).Infof ("Shutting down" )
146
155
}
147
156
148
157
// enqueue adds to our queue. We only have one entry, but we never have to check it since we already know the things
@@ -218,10 +227,11 @@ func (e *DockerRegistryServiceController) watchForDockerURLChanges() {
218
227
219
228
// getDockerRegistryLocations returns the dns form and the ip form of the secret
220
229
func (e * DockerRegistryServiceController ) getDockerRegistryLocations () []string {
221
- ret := []string {}
230
+ ret := append ( []string {}, e . additionalRegistryURLs ... )
222
231
for _ , location := range serviceLocations {
223
232
ret = append (ret , getDockerRegistryLocations (e .serviceLister , location )... )
224
233
}
234
+ glog .V (4 ).Infof ("found docker registry urls: %v" , ret )
225
235
return ret
226
236
}
227
237
@@ -248,9 +258,10 @@ func (e *DockerRegistryServiceController) syncRegistryLocationChange() error {
248
258
newDockerRegistryLocations := sets .NewString (newLocations ... )
249
259
existingURLs := e .getRegistryURLs ()
250
260
if existingURLs .Equal (newDockerRegistryLocations ) && e .initialSecretsCheckDone {
251
- glog .V (4 ).Infof ("No effective update: %v" , newDockerRegistryLocations )
261
+ glog .V (3 ).Infof ("No effective update: %v" , newDockerRegistryLocations )
252
262
return nil
253
263
}
264
+ glog .V (1 ).Infof ("Updating registry URLs from %v to %v" , existingURLs , newDockerRegistryLocations )
254
265
255
266
// make sure that new dockercfg secrets get the correct locations
256
267
e .dockercfgController .SetDockerURLs (newDockerRegistryLocations .List ()... )
0 commit comments