Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
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 []*v1alpha1.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 any
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 []*v1alpha1.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) (*v1alpha1.Repository, error)
RepositoryNamespaceListerExpansion
}
RepositoryNamespaceLister helps list and get Repositories. All objects returned here must be treated as read-only.
type RepositoryNamespaceListerExpansion ¶
type RepositoryNamespaceListerExpansion any
RepositoryNamespaceListerExpansion allows custom methods to be added to RepositoryNamespaceLister.
Click to show internal directories.
Click to hide internal directories.