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