Documentation ¶
Index ¶
- type HelmApplicationLister
- type HelmApplicationListerExpansion
- type HelmApplicationVersionLister
- type HelmApplicationVersionListerExpansion
- type HelmCategoryLister
- type HelmCategoryListerExpansion
- type HelmReleaseLister
- type HelmReleaseListerExpansion
- type HelmRepoLister
- type HelmRepoListerExpansion
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type HelmApplicationLister ¶
type HelmApplicationLister interface { // List lists all HelmApplications in the indexer. List(selector labels.Selector) (ret []*v1alpha1.HelmApplication, err error) // Get retrieves the HelmApplication from the index for a given name. Get(name string) (*v1alpha1.HelmApplication, error) HelmApplicationListerExpansion }
HelmApplicationLister helps list HelmApplications.
func NewHelmApplicationLister ¶
func NewHelmApplicationLister(indexer cache.Indexer) HelmApplicationLister
NewHelmApplicationLister returns a new HelmApplicationLister.
type HelmApplicationListerExpansion ¶
type HelmApplicationListerExpansion interface{}
HelmApplicationListerExpansion allows custom methods to be added to HelmApplicationLister.
type HelmApplicationVersionLister ¶
type HelmApplicationVersionLister interface { // List lists all HelmApplicationVersions in the indexer. List(selector labels.Selector) (ret []*v1alpha1.HelmApplicationVersion, err error) // Get retrieves the HelmApplicationVersion from the index for a given name. Get(name string) (*v1alpha1.HelmApplicationVersion, error) HelmApplicationVersionListerExpansion }
HelmApplicationVersionLister helps list HelmApplicationVersions.
func NewHelmApplicationVersionLister ¶
func NewHelmApplicationVersionLister(indexer cache.Indexer) HelmApplicationVersionLister
NewHelmApplicationVersionLister returns a new HelmApplicationVersionLister.
type HelmApplicationVersionListerExpansion ¶
type HelmApplicationVersionListerExpansion interface{}
HelmApplicationVersionListerExpansion allows custom methods to be added to HelmApplicationVersionLister.
type HelmCategoryLister ¶
type HelmCategoryLister interface { // List lists all HelmCategories in the indexer. List(selector labels.Selector) (ret []*v1alpha1.HelmCategory, err error) // Get retrieves the HelmCategory from the index for a given name. Get(name string) (*v1alpha1.HelmCategory, error) HelmCategoryListerExpansion }
HelmCategoryLister helps list HelmCategories.
func NewHelmCategoryLister ¶
func NewHelmCategoryLister(indexer cache.Indexer) HelmCategoryLister
NewHelmCategoryLister returns a new HelmCategoryLister.
type HelmCategoryListerExpansion ¶
type HelmCategoryListerExpansion interface{}
HelmCategoryListerExpansion allows custom methods to be added to HelmCategoryLister.
type HelmReleaseLister ¶
type HelmReleaseLister interface { // List lists all HelmReleases in the indexer. List(selector labels.Selector) (ret []*v1alpha1.HelmRelease, err error) // Get retrieves the HelmRelease from the index for a given name. Get(name string) (*v1alpha1.HelmRelease, error) HelmReleaseListerExpansion }
HelmReleaseLister helps list HelmReleases.
func NewHelmReleaseLister ¶
func NewHelmReleaseLister(indexer cache.Indexer) HelmReleaseLister
NewHelmReleaseLister returns a new HelmReleaseLister.
type HelmReleaseListerExpansion ¶
type HelmReleaseListerExpansion interface{}
HelmReleaseListerExpansion allows custom methods to be added to HelmReleaseLister.
type HelmRepoLister ¶
type HelmRepoLister interface { // List lists all HelmRepos in the indexer. List(selector labels.Selector) (ret []*v1alpha1.HelmRepo, err error) // Get retrieves the HelmRepo from the index for a given name. Get(name string) (*v1alpha1.HelmRepo, error) HelmRepoListerExpansion }
HelmRepoLister helps list HelmRepos.
func NewHelmRepoLister ¶
func NewHelmRepoLister(indexer cache.Indexer) HelmRepoLister
NewHelmRepoLister returns a new HelmRepoLister.
type HelmRepoListerExpansion ¶
type HelmRepoListerExpansion interface{}
HelmRepoListerExpansion allows custom methods to be added to HelmRepoLister.