import "k8s.io/kubernetes/staging/src/k8s.io/client-go/dynamic/dynamiclister"
interface.go lister.go shim.go
func NewRuntimeObjectShim(lister Lister) cache.GenericLister
NewRuntimeObjectShim returns a new shim for Lister. It wraps Lister so that it implements cache.GenericLister interface
type Lister interface { // List lists all resources in the indexer. List(selector labels.Selector) (ret []*unstructured.Unstructured, err error) // Get retrieves a resource from the indexer with the given name Get(name string) (*unstructured.Unstructured, error) // Namespace returns an object that can list and get resources in a given namespace. Namespace(namespace string) NamespaceLister }
Lister helps list resources.
New returns a new Lister.
type NamespaceLister interface { // List lists all resources in the indexer for a given namespace. List(selector labels.Selector) (ret []*unstructured.Unstructured, err error) // Get retrieves a resource from the indexer for a given namespace and name. Get(name string) (*unstructured.Unstructured, error) }
NamespaceLister helps list and get resources.
Package dynamiclister imports 6 packages (graph). Updated 2019-05-08. Refresh now. Tools for package owners. This is an inactive package (no imports and no commits in at least two years).