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