Fix golint errors when generating informer code

Kubernetes-commit: acf78cd6133de6faea9221d8c53b02ca6009b0bb
This commit is contained in:
Miguel Bernabeu 2018-10-03 21:39:26 +02:00 committed by Kubernetes Publisher
parent 83a48d571f
commit 7bf6cd7d56

View File

@ -27,6 +27,7 @@ import (
versioned "k8s.io/sample-controller/pkg/client/clientset/versioned"
)
// NewInformerFunc takes versioned.Interface and time.Duration to return a SharedIndexInformer.
type NewInformerFunc func(versioned.Interface, time.Duration) cache.SharedIndexInformer
// SharedInformerFactory a small interface to allow for adding an informer without an import cycle
@ -35,4 +36,5 @@ type SharedInformerFactory interface {
InformerFor(obj runtime.Object, newFunc NewInformerFunc) cache.SharedIndexInformer
}
// TweakListOptionsFunc is a function that transforms a v1.ListOptions.
type TweakListOptionsFunc func(*v1.ListOptions)