Documentation ¶
Index ¶
- type ChartGroupLister
- type ChartGroupListerExpansion
- type ChartInfoLister
- type ChartInfoListerExpansion
- type ChartInfoNamespaceLister
- type ChartInfoNamespaceListerExpansion
- type ChartLister
- type ChartListerExpansion
- type ChartNamespaceLister
- type ChartNamespaceListerExpansion
- type ConfigMapLister
- type ConfigMapListerExpansion
- type NamespaceLister
- type NamespaceListerExpansion
- type RepositoryLister
- type RepositoryListerExpansion
- type RepositoryNamespaceLister
- type RepositoryNamespaceListerExpansion
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ChartGroupLister ¶
type ChartGroupLister interface { // List lists all ChartGroups in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*registry.ChartGroup, err error) // Get retrieves the ChartGroup from the index for a given name. // Objects returned here must be treated as read-only. Get(name string) (*registry.ChartGroup, error) ChartGroupListerExpansion }
ChartGroupLister helps list ChartGroups. All objects returned here must be treated as read-only.
func NewChartGroupLister ¶
func NewChartGroupLister(indexer cache.Indexer) ChartGroupLister
NewChartGroupLister returns a new ChartGroupLister.
type ChartGroupListerExpansion ¶
type ChartGroupListerExpansion interface{}
ChartGroupListerExpansion allows custom methods to be added to ChartGroupLister.
type ChartInfoLister ¶ added in v1.4.0
type ChartInfoLister interface { // List lists all ChartInfos in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*registry.ChartInfo, err error) // ChartInfos returns an object that can list and get ChartInfos. ChartInfos(namespace string) ChartInfoNamespaceLister ChartInfoListerExpansion }
ChartInfoLister helps list ChartInfos. All objects returned here must be treated as read-only.
func NewChartInfoLister ¶ added in v1.4.0
func NewChartInfoLister(indexer cache.Indexer) ChartInfoLister
NewChartInfoLister returns a new ChartInfoLister.
type ChartInfoListerExpansion ¶ added in v1.4.0
type ChartInfoListerExpansion interface{}
ChartInfoListerExpansion allows custom methods to be added to ChartInfoLister.
type ChartInfoNamespaceLister ¶ added in v1.4.0
type ChartInfoNamespaceLister interface { // List lists all ChartInfos in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*registry.ChartInfo, err error) // Get retrieves the ChartInfo from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*registry.ChartInfo, error) ChartInfoNamespaceListerExpansion }
ChartInfoNamespaceLister helps list and get ChartInfos. All objects returned here must be treated as read-only.
type ChartInfoNamespaceListerExpansion ¶ added in v1.4.0
type ChartInfoNamespaceListerExpansion interface{}
ChartInfoNamespaceListerExpansion allows custom methods to be added to ChartInfoNamespaceLister.
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 []*registry.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 []*registry.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) (*registry.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.
type ConfigMapLister ¶
type ConfigMapLister interface { // List lists all ConfigMaps in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*registry.ConfigMap, err error) // Get retrieves the ConfigMap from the index for a given name. // Objects returned here must be treated as read-only. Get(name string) (*registry.ConfigMap, error) ConfigMapListerExpansion }
ConfigMapLister helps list ConfigMaps. All objects returned here must be treated as read-only.
func NewConfigMapLister ¶
func NewConfigMapLister(indexer cache.Indexer) ConfigMapLister
NewConfigMapLister returns a new ConfigMapLister.
type ConfigMapListerExpansion ¶
type ConfigMapListerExpansion interface{}
ConfigMapListerExpansion allows custom methods to be added to ConfigMapLister.
type NamespaceLister ¶
type NamespaceLister interface { // List lists all Namespaces in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*registry.Namespace, err error) // Get retrieves the Namespace from the index for a given name. // Objects returned here must be treated as read-only. Get(name string) (*registry.Namespace, error) NamespaceListerExpansion }
NamespaceLister helps list Namespaces. All objects returned here must be treated as read-only.
func NewNamespaceLister ¶
func NewNamespaceLister(indexer cache.Indexer) NamespaceLister
NewNamespaceLister returns a new NamespaceLister.
type NamespaceListerExpansion ¶
type NamespaceListerExpansion interface{}
NamespaceListerExpansion allows custom methods to be added to NamespaceLister.
type RepositoryLister ¶
type RepositoryLister interface { // List lists all Repositories in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*registry.Repository, err error) // Repositories returns an object that can list and get Repositories. Repositories(namespace string) RepositoryNamespaceLister RepositoryListerExpansion }
RepositoryLister helps list Repositories. All objects returned here must be treated as read-only.
func NewRepositoryLister ¶
func NewRepositoryLister(indexer cache.Indexer) RepositoryLister
NewRepositoryLister returns a new RepositoryLister.
type RepositoryListerExpansion ¶
type RepositoryListerExpansion interface{}
RepositoryListerExpansion allows custom methods to be added to RepositoryLister.
type RepositoryNamespaceLister ¶
type RepositoryNamespaceLister interface { // List lists all Repositories in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*registry.Repository, err error) // Get retrieves the Repository from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*registry.Repository, error) RepositoryNamespaceListerExpansion }
RepositoryNamespaceLister helps list and get Repositories. All objects returned here must be treated as read-only.
type RepositoryNamespaceListerExpansion ¶
type RepositoryNamespaceListerExpansion interface{}
RepositoryNamespaceListerExpansion allows custom methods to be added to RepositoryNamespaceLister.