Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type NodeLister ¶
type NodeLister interface { // List lists all Nodes in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Node, err error) // Nodes returns an object that can list and get Nodes. Nodes(namespace string) NodeNamespaceLister NodeListerExpansion }
NodeLister helps list Nodes. All objects returned here must be treated as read-only.
func NewNodeLister ¶
func NewNodeLister(indexer cache.Indexer) NodeLister
NewNodeLister returns a new NodeLister.
type NodeListerExpansion ¶
type NodeListerExpansion interface{}
NodeListerExpansion allows custom methods to be added to NodeLister.
type NodeNamespaceLister ¶
type NodeNamespaceLister interface { // List lists all Nodes in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Node, err error) // Get retrieves the Node from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Node, error) NodeNamespaceListerExpansion }
NodeNamespaceLister helps list and get Nodes. All objects returned here must be treated as read-only.
type NodeNamespaceListerExpansion ¶
type NodeNamespaceListerExpansion interface{}
NodeNamespaceListerExpansion allows custom methods to be added to NodeNamespaceLister.
Click to show internal directories.
Click to hide internal directories.