Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[POC] make the docker registry secret always prime #19791

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions pkg/serviceaccounts/controllers/docker_registry_service.go
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ type DockerRegistryServiceController struct {
serviceLister listers.ServiceLister
servicesSynced func() bool

syncRegistryLocationHandler func(key string) error
syncRegistryLocationHandler func() error

secretCache cache.Store
secretsSynced func() bool
Expand Down Expand Up @@ -157,10 +157,9 @@ func (e *DockerRegistryServiceController) waitForDockerURLs(ready chan<- struct{
return
}

// after syncing, determine the current state and assume that we're up to date for it if you don't do this,
// you'll get an initial storm as you mess with all the dockercfg secrets every time you startup
// after syncing, make sure the dockercfgController is up to date before releasing it
// this controller will do a single scan of all existing secrets to be sure that they're up to date
urls := e.getDockerRegistryLocations()
e.setRegistryURLs(urls...)
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mfojtik this is the line you found before. Removing this causes us to rescan all secrets once and then only on changes thereafter, right?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@deads2k gotcha, this will cause e.getRegistryURLs to return empty map on the first run which will make https://github.com/openshift/origin/pull/19791/files#diff-f9db327ed89bae5fe5de02a82f7a91d8R244 pass.

e.dockercfgController.SetDockerURLs(urls...)
close(e.dockerURLsInitialized)
close(ready)
Expand Down Expand Up @@ -190,7 +189,7 @@ func (e *DockerRegistryServiceController) watchForDockerURLChanges() {
}
defer e.registryLocationQueue.Done(key)

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

// syncRegistryLocationChange goes through all service account dockercfg secrets and updates them to point at a new docker-registry location
func (e *DockerRegistryServiceController) syncRegistryLocationChange(key string) error {
func (e *DockerRegistryServiceController) syncRegistryLocationChange() error {
newLocations := e.getDockerRegistryLocations()
newDockerRegistryLocations := sets.NewString(newLocations...)
existingURLs := e.getRegistryURLs()
Expand Down
23 changes: 18 additions & 5 deletions pkg/serviceaccounts/controllers/docker_registry_service_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,20 @@ func controllerSetup(startingObjects []runtime.Object, t *testing.T, stopCh <-ch
return kubeclient, fakeWatch, controller, informerFactory
}

func wrapHandler(indicator chan bool, handler func(string) error, t *testing.T) func(string) error {
func wrapHandler(indicator chan bool, handler func() error, t *testing.T) func() error {
return func() error {
defer func() { indicator <- true }()

err := handler()
if err != nil {
t.Errorf("unexpected error: %v", err)
}

return err
}
}

func wrapStringHandler(indicator chan bool, handler func(string) error, t *testing.T) func(string) error {
return func(key string) error {
defer func() { indicator <- true }()

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

kubeclient, fakeWatch, controller, informerFactory := controllerSetup([]runtime.Object{newStyleDockercfgSecret}, t, stopChannel)
controller.syncRegistryLocationHandler = wrapHandler(received, controller.syncRegistryLocationChange, t)
controller.syncSecretHandler = wrapHandler(updatedSecret, controller.syncSecretUpdate, t)
controller.syncSecretHandler = wrapStringHandler(updatedSecret, controller.syncSecretUpdate, t)
informerFactory.Start(stopChannel)
go controller.Run(5, stopChannel)

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

kubeclient, fakeWatch, controller, informerFactory := controllerSetup([]runtime.Object{oldStyleDockercfgSecret}, t, stopChannel)
controller.syncRegistryLocationHandler = wrapHandler(received, controller.syncRegistryLocationChange, t)
controller.syncSecretHandler = wrapHandler(updatedSecret, controller.syncSecretUpdate, t)
controller.syncSecretHandler = wrapStringHandler(updatedSecret, controller.syncSecretUpdate, t)
informerFactory.Start(stopChannel)
go controller.Run(5, stopChannel)

Expand Down Expand Up @@ -309,7 +322,7 @@ func TestUpdateOldStyleSecretWithoutKey(t *testing.T) {
return true, tokenSecret, nil
})
controller.syncRegistryLocationHandler = wrapHandler(received, controller.syncRegistryLocationChange, t)
controller.syncSecretHandler = wrapHandler(updatedSecret, controller.syncSecretUpdate, t)
controller.syncSecretHandler = wrapStringHandler(updatedSecret, controller.syncSecretUpdate, t)
informerFactory.Start(stopChannel)
go controller.Run(5, stopChannel)

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

kubeclient, fakeWatch, controller, informerFactory := controllerSetup([]runtime.Object{registryService, oldStyleDockercfgSecret}, t, stopChannel)
controller.syncRegistryLocationHandler = wrapHandler(received, controller.syncRegistryLocationChange, t)
controller.syncSecretHandler = wrapHandler(updatedSecret, controller.syncSecretUpdate, t)
controller.syncSecretHandler = wrapStringHandler(updatedSecret, controller.syncSecretUpdate, t)
informerFactory.Start(stopChannel)
go controller.Run(5, stopChannel)

Expand Down