Skip to content

Commit 3f5088e

Browse files
committed
make the docker registry secret always prime
1 parent 5843432 commit 3f5088e

File tree

2 files changed

+23
-11
lines changed

2 files changed

+23
-11
lines changed

pkg/serviceaccounts/controllers/docker_registry_service.go

+5-6
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ type DockerRegistryServiceController struct {
103103
serviceLister listers.ServiceLister
104104
servicesSynced func() bool
105105

106-
syncRegistryLocationHandler func(key string) error
106+
syncRegistryLocationHandler func() error
107107

108108
secretCache cache.Store
109109
secretsSynced func() bool
@@ -157,10 +157,9 @@ func (e *DockerRegistryServiceController) waitForDockerURLs(ready chan<- struct{
157157
return
158158
}
159159

160-
// after syncing, determine the current state and assume that we're up to date for it if you don't do this,
161-
// you'll get an initial storm as you mess with all the dockercfg secrets every time you startup
160+
// after syncing, make sure the dockercfgController is up to date before releasing it
161+
// this controller will do a single scan of all existing secrets to be sure that they're up to date
162162
urls := e.getDockerRegistryLocations()
163-
e.setRegistryURLs(urls...)
164163
e.dockercfgController.SetDockerURLs(urls...)
165164
close(e.dockerURLsInitialized)
166165
close(ready)
@@ -190,7 +189,7 @@ func (e *DockerRegistryServiceController) watchForDockerURLChanges() {
190189
}
191190
defer e.registryLocationQueue.Done(key)
192191

193-
if err := e.syncRegistryLocationHandler(key.(string)); err == nil {
192+
if err := e.syncRegistryLocationHandler(); err == nil {
194193
// this means the request was successfully handled. We should "forget" the item so that any retry
195194
// later on is reset
196195
e.registryLocationQueue.Forget(key)
@@ -238,7 +237,7 @@ func getDockerRegistryLocations(lister listers.ServiceLister, location serviceLo
238237
}
239238

240239
// syncRegistryLocationChange goes through all service account dockercfg secrets and updates them to point at a new docker-registry location
241-
func (e *DockerRegistryServiceController) syncRegistryLocationChange(key string) error {
240+
func (e *DockerRegistryServiceController) syncRegistryLocationChange() error {
242241
newLocations := e.getDockerRegistryLocations()
243242
newDockerRegistryLocations := sets.NewString(newLocations...)
244243
existingURLs := e.getRegistryURLs()

pkg/serviceaccounts/controllers/docker_registry_service_test.go

+18-5
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,20 @@ func controllerSetup(startingObjects []runtime.Object, t *testing.T, stopCh <-ch
6363
return kubeclient, fakeWatch, controller, informerFactory
6464
}
6565

66-
func wrapHandler(indicator chan bool, handler func(string) error, t *testing.T) func(string) error {
66+
func wrapHandler(indicator chan bool, handler func() error, t *testing.T) func() error {
67+
return func() error {
68+
defer func() { indicator <- true }()
69+
70+
err := handler()
71+
if err != nil {
72+
t.Errorf("unexpected error: %v", err)
73+
}
74+
75+
return err
76+
}
77+
}
78+
79+
func wrapStringHandler(indicator chan bool, handler func(string) error, t *testing.T) func(string) error {
6780
return func(key string) error {
6881
defer func() { indicator <- true }()
6982

@@ -129,7 +142,7 @@ func TestUpdateNewStyleSecret(t *testing.T) {
129142

130143
kubeclient, fakeWatch, controller, informerFactory := controllerSetup([]runtime.Object{newStyleDockercfgSecret}, t, stopChannel)
131144
controller.syncRegistryLocationHandler = wrapHandler(received, controller.syncRegistryLocationChange, t)
132-
controller.syncSecretHandler = wrapHandler(updatedSecret, controller.syncSecretUpdate, t)
145+
controller.syncSecretHandler = wrapStringHandler(updatedSecret, controller.syncSecretUpdate, t)
133146
informerFactory.Start(stopChannel)
134147
go controller.Run(5, stopChannel)
135148

@@ -218,7 +231,7 @@ func TestUpdateOldStyleSecretWithKey(t *testing.T) {
218231

219232
kubeclient, fakeWatch, controller, informerFactory := controllerSetup([]runtime.Object{oldStyleDockercfgSecret}, t, stopChannel)
220233
controller.syncRegistryLocationHandler = wrapHandler(received, controller.syncRegistryLocationChange, t)
221-
controller.syncSecretHandler = wrapHandler(updatedSecret, controller.syncSecretUpdate, t)
234+
controller.syncSecretHandler = wrapStringHandler(updatedSecret, controller.syncSecretUpdate, t)
222235
informerFactory.Start(stopChannel)
223236
go controller.Run(5, stopChannel)
224237

@@ -309,7 +322,7 @@ func TestUpdateOldStyleSecretWithoutKey(t *testing.T) {
309322
return true, tokenSecret, nil
310323
})
311324
controller.syncRegistryLocationHandler = wrapHandler(received, controller.syncRegistryLocationChange, t)
312-
controller.syncSecretHandler = wrapHandler(updatedSecret, controller.syncSecretUpdate, t)
325+
controller.syncSecretHandler = wrapStringHandler(updatedSecret, controller.syncSecretUpdate, t)
313326
informerFactory.Start(stopChannel)
314327
go controller.Run(5, stopChannel)
315328

@@ -400,7 +413,7 @@ func TestClearSecretAndRecreate(t *testing.T) {
400413

401414
kubeclient, fakeWatch, controller, informerFactory := controllerSetup([]runtime.Object{registryService, oldStyleDockercfgSecret}, t, stopChannel)
402415
controller.syncRegistryLocationHandler = wrapHandler(received, controller.syncRegistryLocationChange, t)
403-
controller.syncSecretHandler = wrapHandler(updatedSecret, controller.syncSecretUpdate, t)
416+
controller.syncSecretHandler = wrapStringHandler(updatedSecret, controller.syncSecretUpdate, t)
404417
informerFactory.Start(stopChannel)
405418
go controller.Run(5, stopChannel)
406419

0 commit comments

Comments
 (0)