...

Source file src/k8s.io/kube-aggregator/pkg/client/informers/externalversions/generic.go

Documentation: k8s.io/kube-aggregator/pkg/client/informers/externalversions

     1  /*
     2  Copyright The Kubernetes Authors.
     3  
     4  Licensed under the Apache License, Version 2.0 (the "License");
     5  you may not use this file except in compliance with the License.
     6  You may obtain a copy of the License at
     7  
     8      http://www.apache.org/licenses/LICENSE-2.0
     9  
    10  Unless required by applicable law or agreed to in writing, software
    11  distributed under the License is distributed on an "AS IS" BASIS,
    12  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    13  See the License for the specific language governing permissions and
    14  limitations under the License.
    15  */
    16  
    17  // Code generated by informer-gen. DO NOT EDIT.
    18  
    19  package externalversions
    20  
    21  import (
    22  	"fmt"
    23  
    24  	schema "k8s.io/apimachinery/pkg/runtime/schema"
    25  	cache "k8s.io/client-go/tools/cache"
    26  	v1 "k8s.io/kube-aggregator/pkg/apis/apiregistration/v1"
    27  	v1beta1 "k8s.io/kube-aggregator/pkg/apis/apiregistration/v1beta1"
    28  )
    29  
    30  // GenericInformer is type of SharedIndexInformer which will locate and delegate to other
    31  // sharedInformers based on type
    32  type GenericInformer interface {
    33  	Informer() cache.SharedIndexInformer
    34  	Lister() cache.GenericLister
    35  }
    36  
    37  type genericInformer struct {
    38  	informer cache.SharedIndexInformer
    39  	resource schema.GroupResource
    40  }
    41  
    42  // Informer returns the SharedIndexInformer.
    43  func (f *genericInformer) Informer() cache.SharedIndexInformer {
    44  	return f.informer
    45  }
    46  
    47  // Lister returns the GenericLister.
    48  func (f *genericInformer) Lister() cache.GenericLister {
    49  	return cache.NewGenericLister(f.Informer().GetIndexer(), f.resource)
    50  }
    51  
    52  // ForResource gives generic access to a shared informer of the matching type
    53  // TODO extend this to unknown resources with a client pool
    54  func (f *sharedInformerFactory) ForResource(resource schema.GroupVersionResource) (GenericInformer, error) {
    55  	switch resource {
    56  	// Group=apiregistration.k8s.io, Version=v1
    57  	case v1.SchemeGroupVersion.WithResource("apiservices"):
    58  		return &genericInformer{resource: resource.GroupResource(), informer: f.Apiregistration().V1().APIServices().Informer()}, nil
    59  
    60  		// Group=apiregistration.k8s.io, Version=v1beta1
    61  	case v1beta1.SchemeGroupVersion.WithResource("apiservices"):
    62  		return &genericInformer{resource: resource.GroupResource(), informer: f.Apiregistration().V1beta1().APIServices().Informer()}, nil
    63  
    64  	}
    65  
    66  	return nil, fmt.Errorf("no informer found for %v", resource)
    67  }
    68  

View as plain text