Skip to content

Commit d7738c7

Browse files
deads2kmfojtik
authored andcommitted
make the docker registry secret always prime
1 parent 23a0420 commit d7738c7

File tree

2 files changed

+44
-14
lines changed

2 files changed

+44
-14
lines changed

pkg/serviceaccounts/controllers/docker_registry_service.go

+10-5
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
@@ -115,6 +115,11 @@ type DockerRegistryServiceController struct {
115115
secretsToUpdate workqueue.RateLimitingInterface
116116

117117
dockerURLsInitialized chan struct{}
118+
119+
// initialSecretsCheckDone is used to indicate that the controller should perform a full resync of all secrets
120+
// regardless of whether the registry location changed or not. This check is usually done on controller start
121+
// to verify the content of dockercfg entries in secrets
122+
initialSecretsCheckDone bool
118123
}
119124

120125
// Runs controller loops and returns immediately
@@ -190,7 +195,7 @@ func (e *DockerRegistryServiceController) watchForDockerURLChanges() {
190195
}
191196
defer e.registryLocationQueue.Done(key)
192197

193-
if err := e.syncRegistryLocationHandler(key.(string)); err == nil {
198+
if err := e.syncRegistryLocationHandler(); err == nil {
194199
// this means the request was successfully handled. We should "forget" the item so that any retry
195200
// later on is reset
196201
e.registryLocationQueue.Forget(key)
@@ -238,18 +243,18 @@ func getDockerRegistryLocations(lister listers.ServiceLister, location serviceLo
238243
}
239244

240245
// 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 {
246+
func (e *DockerRegistryServiceController) syncRegistryLocationChange() error {
242247
newLocations := e.getDockerRegistryLocations()
243248
newDockerRegistryLocations := sets.NewString(newLocations...)
244249
existingURLs := e.getRegistryURLs()
245-
if existingURLs.Equal(newDockerRegistryLocations) {
246-
glog.V(4).Infof("No effective update: %v", newDockerRegistryLocations)
250+
if existingURLs.Equal(newDockerRegistryLocations) && e.initialSecretsCheckDone {
247251
return nil
248252
}
249253

250254
// make sure that new dockercfg secrets get the correct locations
251255
e.dockercfgController.SetDockerURLs(newDockerRegistryLocations.List()...)
252256
e.setRegistryURLs(newDockerRegistryLocations.List()...)
257+
e.initialSecretsCheckDone = true
253258

254259
// we've changed the docker registry URL. Add items to the work queue for all known secrets
255260
// new secrets will already get the updated value.

pkg/serviceaccounts/controllers/docker_registry_service_test.go

+34-9
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

@@ -139,6 +152,9 @@ func TestUpdateNewStyleSecret(t *testing.T) {
139152
case <-time.After(time.Duration(45 * time.Second)):
140153
t.Fatalf("failed to become ready")
141154
}
155+
if controller.initialSecretsCheckDone != false {
156+
t.Fatalf("initialSecretsCheckDone should be false")
157+
}
142158

143159
fakeWatch.Modify(registryService)
144160
t.Log("Waiting to reach syncRegistryLocationHandler")
@@ -147,6 +163,12 @@ func TestUpdateNewStyleSecret(t *testing.T) {
147163
case <-time.After(time.Duration(45 * time.Second)):
148164
t.Fatalf("failed to call into syncRegistryLocationHandler")
149165
}
166+
167+
// after this point the secrets should be added to the queue and initial check should be done.
168+
if controller.initialSecretsCheckDone != true {
169+
t.Fatalf("initialSecretsCheckDone should be true")
170+
}
171+
150172
t.Log("Waiting to update secret")
151173
select {
152174
case <-updatedSecret:
@@ -216,9 +238,9 @@ func TestUpdateOldStyleSecretWithKey(t *testing.T) {
216238
Data: map[string][]byte{v1.DockerConfigKey: dockercfgContent},
217239
}
218240

219-
kubeclient, fakeWatch, controller, informerFactory := controllerSetup([]runtime.Object{oldStyleDockercfgSecret}, t, stopChannel)
241+
kubeclient, _, controller, informerFactory := controllerSetup([]runtime.Object{registryService, oldStyleDockercfgSecret}, t, stopChannel)
220242
controller.syncRegistryLocationHandler = wrapHandler(received, controller.syncRegistryLocationChange, t)
221-
controller.syncSecretHandler = wrapHandler(updatedSecret, controller.syncSecretUpdate, t)
243+
controller.syncSecretHandler = wrapStringHandler(updatedSecret, controller.syncSecretUpdate, t)
222244
informerFactory.Start(stopChannel)
223245
go controller.Run(5, stopChannel)
224246

@@ -229,8 +251,6 @@ func TestUpdateOldStyleSecretWithKey(t *testing.T) {
229251
t.Fatalf("failed to become ready")
230252
}
231253

232-
fakeWatch.Modify(registryService)
233-
234254
t.Log("Waiting to reach syncRegistryLocationHandler")
235255
select {
236256
case <-received:
@@ -309,7 +329,7 @@ func TestUpdateOldStyleSecretWithoutKey(t *testing.T) {
309329
return true, tokenSecret, nil
310330
})
311331
controller.syncRegistryLocationHandler = wrapHandler(received, controller.syncRegistryLocationChange, t)
312-
controller.syncSecretHandler = wrapHandler(updatedSecret, controller.syncSecretUpdate, t)
332+
controller.syncSecretHandler = wrapStringHandler(updatedSecret, controller.syncSecretUpdate, t)
313333
informerFactory.Start(stopChannel)
314334
go controller.Run(5, stopChannel)
315335

@@ -400,17 +420,18 @@ func TestClearSecretAndRecreate(t *testing.T) {
400420

401421
kubeclient, fakeWatch, controller, informerFactory := controllerSetup([]runtime.Object{registryService, oldStyleDockercfgSecret}, t, stopChannel)
402422
controller.syncRegistryLocationHandler = wrapHandler(received, controller.syncRegistryLocationChange, t)
403-
controller.syncSecretHandler = wrapHandler(updatedSecret, controller.syncSecretUpdate, t)
423+
controller.syncSecretHandler = wrapStringHandler(updatedSecret, controller.syncSecretUpdate, t)
404424
informerFactory.Start(stopChannel)
405425
go controller.Run(5, stopChannel)
406426

407427
t.Log("Waiting for ready")
408428
select {
409429
case <-controller.dockerURLsInitialized:
410430
case <-time.After(time.Duration(45 * time.Second)):
411-
t.Fatalf("failed to become ready")
431+
t.Fatalf("failed waiting for dockerURLsInitialized")
412432
}
413433

434+
t.Logf("deleting %s service", registryService.Name)
414435
fakeWatch.Delete(registryService)
415436

416437
t.Log("Waiting for first update")
@@ -419,6 +440,7 @@ func TestClearSecretAndRecreate(t *testing.T) {
419440
case <-time.After(time.Duration(45 * time.Second)):
420441
t.Fatalf("failed to call into syncRegistryLocationHandler")
421442
}
443+
422444
t.Log("Waiting to update secret")
423445
select {
424446
case <-updatedSecret:
@@ -449,6 +471,8 @@ func TestClearSecretAndRecreate(t *testing.T) {
449471
}
450472

451473
kubeclient.ClearActions()
474+
475+
t.Logf("adding %s service", registryService.Name)
452476
fakeWatch.Add(registryService)
453477

454478
t.Log("Waiting for second update")
@@ -457,6 +481,7 @@ func TestClearSecretAndRecreate(t *testing.T) {
457481
case <-time.After(time.Duration(45 * time.Second)):
458482
t.Fatalf("failed to call into syncRegistryLocationHandler")
459483
}
484+
460485
t.Log("Waiting to update secret")
461486
select {
462487
case <-updatedSecret:

0 commit comments

Comments
 (0)