forked from kubernetes/kubernetes
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request kubernetes#35227 from deads2k/controller-13-generi…
…c-infromer Automatic merge from submit-queue add generic shared informer backed by existing informer Adds the ability to get an informer and lister that returns `[]runtime.Object` methods with the "normal" filtering capabilities based on a `GroupResource`. Right now, it only works on known types (and re-uses those caches for efficiency by having a different skin on the `Index`). It should be extended in the future. @derekwaynecarr I think this gives you the types you were looking for to avoid the ugly array copies.
- Loading branch information
Showing
3 changed files
with
169 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
/* | ||
Copyright 2016 The Kubernetes Authors. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package informers | ||
|
||
import ( | ||
"fmt" | ||
|
||
"k8s.io/kubernetes/pkg/api" | ||
"k8s.io/kubernetes/pkg/api/unversioned" | ||
"k8s.io/kubernetes/pkg/apis/extensions" | ||
"k8s.io/kubernetes/pkg/apis/rbac" | ||
"k8s.io/kubernetes/pkg/client/cache" | ||
) | ||
|
||
// GenericInformer is type of SharedIndexInformer which will locate and delegate to other | ||
// sharedInformers based on type | ||
type GenericInformer interface { | ||
Informer() cache.SharedIndexInformer | ||
Lister() cache.GenericLister | ||
} | ||
|
||
// ForResource gives generic access to a shared informer of the matching type | ||
// TODO extend this to unknown resources with a client pool | ||
func (f *sharedInformerFactory) ForResource(resource unversioned.GroupResource) (GenericInformer, error) { | ||
switch resource { | ||
case api.Resource("pods"): | ||
return &genericInformer{resource: resource, informer: f.Pods().Informer()}, nil | ||
case api.Resource("limitranges"): | ||
return &genericInformer{resource: resource, informer: f.LimitRanges().Informer()}, nil | ||
case api.Resource("namespaces"): | ||
return &genericInformer{resource: resource, informer: f.Namespaces().Informer()}, nil | ||
case api.Resource("nodes"): | ||
return &genericInformer{resource: resource, informer: f.Nodes().Informer()}, nil | ||
case api.Resource("persistentvolumeclaims"): | ||
return &genericInformer{resource: resource, informer: f.PersistentVolumeClaims().Informer()}, nil | ||
case api.Resource("persistentvolumes"): | ||
return &genericInformer{resource: resource, informer: f.PersistentVolumes().Informer()}, nil | ||
case api.Resource("serviceaccounts"): | ||
return &genericInformer{resource: resource, informer: f.ServiceAccounts().Informer()}, nil | ||
|
||
case extensions.Resource("daemonsets"): | ||
return &genericInformer{resource: resource, informer: f.DaemonSets().Informer()}, nil | ||
case extensions.Resource("deployments"): | ||
return &genericInformer{resource: resource, informer: f.Deployments().Informer()}, nil | ||
case extensions.Resource("replicasets"): | ||
return &genericInformer{resource: resource, informer: f.ReplicaSets().Informer()}, nil | ||
|
||
case rbac.Resource("clusterrolebindings"): | ||
return &genericInformer{resource: resource, informer: f.ClusterRoleBindings().Informer()}, nil | ||
case rbac.Resource("clusterroles"): | ||
return &genericInformer{resource: resource, informer: f.ClusterRoles().Informer()}, nil | ||
case rbac.Resource("rolebindings"): | ||
return &genericInformer{resource: resource, informer: f.RoleBindings().Informer()}, nil | ||
case rbac.Resource("roles"): | ||
return &genericInformer{resource: resource, informer: f.Roles().Informer()}, nil | ||
} | ||
|
||
return nil, fmt.Errorf("no informer found for %v", resource) | ||
} | ||
|
||
type genericInformer struct { | ||
informer cache.SharedIndexInformer | ||
resource unversioned.GroupResource | ||
} | ||
|
||
func (f *genericInformer) Informer() cache.SharedIndexInformer { | ||
return f.informer | ||
} | ||
|
||
func (f *genericInformer) Lister() cache.GenericLister { | ||
return cache.NewGenericLister(f.Informer().GetIndexer(), f.resource) | ||
} |