Skip to content

Commit 7d51eac

Browse files
committed
update docker config secret to include image-registry.openshift-image-registry.svc
1 parent 6d61deb commit 7d51eac

File tree

3 files changed

+72
-43
lines changed

3 files changed

+72
-43
lines changed

pkg/cmd/openshift-controller-manager/controller/serviceaccount.go

-2
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,6 @@ func RunServiceAccountPullSecretsController(ctx ControllerContext) (bool, error)
6868
go dockercfgController.Run(5, ctx.Stop)
6969

7070
dockerRegistryControllerOptions := serviceaccountcontrollers.DockerRegistryServiceControllerOptions{
71-
RegistryNamespace: "default",
72-
RegistryServiceName: "docker-registry",
7371
DockercfgController: dockercfgController,
7472
DockerURLsInitialized: dockerURLsInitialized,
7573
}

pkg/serviceaccounts/controllers/docker_registry_service.go

+58-32
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,6 @@ type DockerRegistryServiceControllerOptions struct {
3131
// If zero, re-list will be delayed as long as possible
3232
Resync time.Duration
3333

34-
RegistryNamespace string
35-
RegistryServiceName string
36-
3734
DockercfgController *DockercfgController
3835

3936
// 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 {
4340
// NewDockerRegistryServiceController returns a new *DockerRegistryServiceController.
4441
func NewDockerRegistryServiceController(secrets informers.SecretInformer, cl kclientset.Interface, options DockerRegistryServiceControllerOptions) *DockerRegistryServiceController {
4542
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,
5350
}
5451

5552
// 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(
5768
&cache.ListWatch{
5869
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)
6172
},
6273
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)
6576
},
6677
},
6778
&v1.Service{},
68-
options.Resync,
79+
resync,
6980
cache.ResourceEventHandlerFuncs{
7081
AddFunc: func(obj interface{}) {
7182
e.enqueueRegistryLocationQueue()
@@ -78,28 +89,34 @@ func NewDockerRegistryServiceController(secrets informers.SecretInformer, cl kcl
7889
},
7990
},
8091
)
81-
e.servicesSynced = e.serviceController.HasSynced
82-
e.syncRegistryLocationHandler = e.syncRegistryLocationChange
92+
ret.servicesSynced = ret.serviceController.HasSynced
8393

84-
e.secretCache = secrets.Informer().GetIndexer()
85-
e.secretsSynced = secrets.Informer().GetController().HasSynced
86-
e.syncSecretHandler = e.syncSecretUpdate
94+
return ret
95+
}
8796

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
89106
}
90107

91108
// DockerRegistryServiceController manages ServiceToken secrets for Service objects
92109
type DockerRegistryServiceController struct {
93110
client kclientset.Interface
94111

95-
serviceName string
96-
serviceNamespace string
112+
legacyServiceLocation serviceLocation
113+
currentServiceLocation serviceLocation
97114

98115
dockercfgController *DockercfgController
99116

100-
serviceController cache.Controller
101-
serviceCache cache.Store
102-
servicesSynced func() bool
117+
legacyServiceCache serviceCache
118+
currentServiceCache serviceCache
119+
103120
syncRegistryLocationHandler func(key string) error
104121

105122
secretCache cache.Store
@@ -119,7 +136,8 @@ func (e *DockerRegistryServiceController) Run(workers int, stopCh <-chan struct{
119136
defer utilruntime.HandleCrash()
120137
defer e.registryLocationQueue.ShutDown()
121138

122-
go e.serviceController.Run(stopCh)
139+
go e.legacyServiceCache.serviceController.Run(stopCh)
140+
go e.currentServiceCache.serviceController.Run(stopCh)
123141

124142
// Wait for the store to sync before starting any work in this controller.
125143
ready := make(chan struct{})
@@ -152,7 +170,7 @@ func (e *DockerRegistryServiceController) waitForDockerURLs(ready chan<- struct{
152170
defer utilruntime.HandleCrash()
153171

154172
// 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) {
156174
return
157175
}
158176

@@ -212,12 +230,19 @@ func (e *DockerRegistryServiceController) watchForDockerURLChanges() {
212230

213231
// getDockerRegistryLocations returns the dns form and the ip form of the secret
214232
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}})
216241
if err != nil {
217242
return []string{}
218243
}
219244

220-
obj, exists, err := e.serviceCache.GetByKey(key)
245+
obj, exists, err := cache.serviceCache.GetByKey(key)
221246
if err != nil {
222247
return []string{}
223248
}
@@ -239,7 +264,8 @@ func (e *DockerRegistryServiceController) getDockerRegistryLocations() []string
239264

240265
// syncRegistryLocationChange goes through all service account dockercfg secrets and updates them to point at a new docker-registry location
241266
func (e *DockerRegistryServiceController) syncRegistryLocationChange(key string) error {
242-
newDockerRegistryLocations := sets.NewString(e.getDockerRegistryLocations()...)
267+
newLocations := e.getDockerRegistryLocations()
268+
newDockerRegistryLocations := sets.NewString(newLocations...)
243269
if e.getRegistryURLs().Equal(newDockerRegistryLocations) {
244270
glog.V(4).Infof("No effective update: %v", newDockerRegistryLocations)
245271
return nil

pkg/serviceaccounts/controllers/docker_registry_service_test.go

+14-9
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ import (
1919
)
2020

2121
const (
22-
registryNamespace = "ns"
23-
registryName = "registry"
22+
registryNamespace = "default"
23+
registryName = "docker-registry"
2424
)
2525

2626
var (
@@ -42,7 +42,14 @@ func controllerSetup(startingObjects []runtime.Object, t *testing.T, stopCh <-ch
4242
kubeclient.PrependReactor("update", "*", func(action clientgotesting.Action) (handled bool, ret runtime.Object, err error) {
4343
return true, action.(clientgotesting.UpdateAction).GetObject(), nil
4444
})
45-
kubeclient.PrependWatchReactor("services", clientgotesting.DefaultWatchReactor(fakeWatch, nil))
45+
kubeclient.PrependWatchReactor("services",
46+
func(action clientgotesting.Action) (handled bool, ret watch.Interface, err error) {
47+
if action.GetNamespace() != registryNamespace {
48+
return true, watch.NewFake(), nil
49+
}
50+
51+
return true, fakeWatch, nil
52+
})
4653

4754
informerFactory := informers.NewSharedInformerFactory(kubeclient, controller.NoResyncPeriodFunc())
4855

@@ -51,8 +58,6 @@ func controllerSetup(startingObjects []runtime.Object, t *testing.T, stopCh <-ch
5158
kubeclient,
5259
DockerRegistryServiceControllerOptions{
5360
Resync: 10 * time.Minute,
54-
RegistryNamespace: registryNamespace,
55-
RegistryServiceName: registryName,
5661
DockercfgController: &DockercfgController{},
5762
DockerURLsInitialized: make(chan struct{}),
5863
},
@@ -153,7 +158,7 @@ func TestUpdateNewStyleSecret(t *testing.T) {
153158
}
154159

155160
expectedDockercfgMap := credentialprovider.DockerConfig{}
156-
for _, key := range []string{"172.16.123.123:1235", "registry.ns.svc:1235"} {
161+
for _, key := range []string{"172.16.123.123:1235", "docker-registry.default.svc:1235"} {
157162
expectedDockercfgMap[key] = credentialprovider.DockerConfigEntry{
158163
Username: "serviceaccount",
159164
Password: newStyleDockercfgSecret.Annotations[ServiceAccountTokenValueAnnotation],
@@ -243,7 +248,7 @@ func TestUpdateOldStyleSecretWithKey(t *testing.T) {
243248
}
244249

245250
expectedDockercfgMap := credentialprovider.DockerConfig{}
246-
for _, key := range []string{"172.16.123.123:1235", "registry.ns.svc:1235"} {
251+
for _, key := range []string{"172.16.123.123:1235", "docker-registry.default.svc:1235"} {
247252
expectedDockercfgMap[key] = credentialprovider.DockerConfigEntry{
248253
Username: "serviceaccount",
249254
Password: "token-value",
@@ -334,7 +339,7 @@ func TestUpdateOldStyleSecretWithoutKey(t *testing.T) {
334339
}
335340

336341
expectedDockercfgMap := credentialprovider.DockerConfig{}
337-
for _, key := range []string{"172.16.123.123:1235", "registry.ns.svc:1235"} {
342+
for _, key := range []string{"172.16.123.123:1235", "docker-registry.default.svc:1235"} {
338343
expectedDockercfgMap[key] = credentialprovider.DockerConfigEntry{
339344
Username: "serviceaccount",
340345
Password: "the-sa-bearer-token",
@@ -463,7 +468,7 @@ func TestClearSecretAndRecreate(t *testing.T) {
463468
}
464469

465470
expectedDockercfgMap := credentialprovider.DockerConfig{}
466-
for _, key := range []string{"172.16.123.123:1235", "registry.ns.svc:1235"} {
471+
for _, key := range []string{"172.16.123.123:1235", "docker-registry.default.svc:1235"} {
467472
expectedDockercfgMap[key] = credentialprovider.DockerConfigEntry{
468473
Username: "serviceaccount",
469474
Password: "the-token",

0 commit comments

Comments
 (0)