Skip to content

Commit 9aca32d

Browse files
authored
Merge pull request #6 from authzed/registry-remove
Add a `Remove` method to the informerfactory Registry.
2 parents 242db45 + 2d9a8e8 commit 9aca32d

File tree

2 files changed

+28
-3
lines changed

2 files changed

+28
-3
lines changed

manager/manager.go

+9-3
Original file line numberDiff line numberDiff line change
@@ -62,15 +62,19 @@ func NewManager(debugConfig *componentconfig.DebuggingConfiguration, address str
6262
// health / debug endpoints for them. It stops when the context is cancelled.
6363
// It will only have an effect the first time it is called.
6464
func (m *Manager) Start(ctx context.Context, controllers ...Controller) error {
65+
m.RLock()
6566
if m.errG != nil {
6667
return fmt.Errorf("manager already started")
6768
}
69+
m.RUnlock()
6870

6971
broadcaster := record.NewBroadcaster()
7072

7173
m.once.Do(func() {
74+
m.Lock()
7275
m.errG, ctx = errgroup.WithContext(ctx)
7376
m.errGCtx = ctx
77+
m.Unlock()
7478

7579
// start controllers
7680
if err := m.Go(controllers...); err != nil {
@@ -105,17 +109,19 @@ func (m *Manager) Start(ctx context.Context, controllers ...Controller) error {
105109

106110
// Go adds controllers into the existing manager's errgroup
107111
func (m *Manager) Go(controllers ...Controller) error {
108-
if m.errG == nil {
112+
m.RLock()
113+
errG := m.errG
114+
if errG == nil {
109115
return fmt.Errorf("cannot add controllers to an unstarted manager")
110116
}
111-
112117
ctx := m.errGCtx
118+
m.RUnlock()
113119

114120
// start newly added controllers
115121
for _, c := range controllers {
116122
c := c
117123
m.healthzHandler.AddHealthChecker(controllerhealthz.NamedHealthChecker(c.Name(), c.HealthChecker()))
118-
m.errG.Go(func() error {
124+
errG.Go(func() error {
119125
ctx, cancel := context.WithCancel(ctx)
120126
m.Lock()
121127
m.cancelFuncs[c] = cancel

typed/registry.go

+19
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,9 @@ func NewRegistry() *Registry {
7272
}
7373
}
7474

75+
// MustNewFilteredDynamicSharedInformerFactory creates a new SharedInformerFactory
76+
// and registers it under the given RegistryKey. It panics if there is already
77+
// an entry with that key.
7578
func (r *Registry) MustNewFilteredDynamicSharedInformerFactory(key FactoryKey, client dynamic.Interface, defaultResync time.Duration, namespace string, tweakListOptions dynamicinformer.TweakListOptionsFunc) dynamicinformer.DynamicSharedInformerFactory {
7679
factory, err := r.NewFilteredDynamicSharedInformerFactory(key, client, defaultResync, namespace, tweakListOptions)
7780
if err != nil {
@@ -80,6 +83,8 @@ func (r *Registry) MustNewFilteredDynamicSharedInformerFactory(key FactoryKey, c
8083
return factory
8184
}
8285

86+
// NewFilteredDynamicSharedInformerFactory creates a new SharedInformerFactory
87+
// and registers it under the given RegistryKey
8388
func (r *Registry) NewFilteredDynamicSharedInformerFactory(key FactoryKey, client dynamic.Interface, defaultResync time.Duration, namespace string, tweakListOptions dynamicinformer.TweakListOptionsFunc) (dynamicinformer.DynamicSharedInformerFactory, error) {
8489
r.Lock()
8590
defer r.Unlock()
@@ -100,12 +105,23 @@ func IndexerFor[K runtime.Object](r *Registry, key RegistryKey) *Indexer[K] {
100105
return NewIndexer[K](r.InformerFor(key).GetIndexer())
101106
}
102107

108+
// Add adds a factory to the registry under the given RegistryKey
103109
func (r *Registry) Add(key RegistryKey, factory dynamicinformer.DynamicSharedInformerFactory) {
104110
r.Lock()
105111
defer r.Unlock()
106112
r.factories[key] = factory
107113
}
108114

115+
// Remove removes a factory from the registry. Note that it does not stop any
116+
// informers that were started via the factory; they should be stopped via
117+
// context cancellation.
118+
func (r *Registry) Remove(key RegistryKey, factory dynamicinformer.DynamicSharedInformerFactory) {
119+
r.Lock()
120+
defer r.Unlock()
121+
delete(r.factories, key)
122+
}
123+
124+
// InformerFactoryFor returns GVR-specific InformerFactory from the Registry.
109125
func (r *Registry) InformerFactoryFor(key RegistryKey) informers.GenericInformer {
110126
r.RLock()
111127
defer r.RUnlock()
@@ -116,14 +132,17 @@ func (r *Registry) InformerFactoryFor(key RegistryKey) informers.GenericInformer
116132
return factory.ForResource(key.GroupVersionResource)
117133
}
118134

135+
// ListerFor returns the GVR-specific Lister from the Registry
119136
func (r *Registry) ListerFor(key RegistryKey) cache.GenericLister {
120137
return r.InformerFactoryFor(key).Lister()
121138
}
122139

140+
// InformerFor returns the GVR-specific Informer from the Registry
123141
func (r *Registry) InformerFor(key RegistryKey) cache.SharedIndexInformer {
124142
return r.InformerFactoryFor(key).Informer()
125143
}
126144

145+
// IndexerFor returns the GVR-specific Indexer from the Registry
127146
func (r *Registry) IndexerFor(key RegistryKey) cache.Indexer {
128147
return r.InformerFactoryFor(key).Informer().GetIndexer()
129148
}

0 commit comments

Comments
 (0)