Documentation ¶
Index ¶
- type ContainerRegistryLister
- type ContainerRegistryListerExpansion
- type ContainerRegistryNamespaceLister
- type ContainerRegistryNamespaceListerExpansion
- type DockerCredentialsLister
- type DockerCredentialsListerExpansion
- type DockerCredentialsNamespaceLister
- type DockerCredentialsNamespaceListerExpansion
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ContainerRegistryLister ¶
type ContainerRegistryLister interface { // List lists all ContainerRegistries in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.ContainerRegistry, err error) // ContainerRegistries returns an object that can list and get ContainerRegistries. ContainerRegistries(namespace string) ContainerRegistryNamespaceLister ContainerRegistryListerExpansion }
ContainerRegistryLister helps list ContainerRegistries. All objects returned here must be treated as read-only.
func NewContainerRegistryLister ¶
func NewContainerRegistryLister(indexer cache.Indexer) ContainerRegistryLister
NewContainerRegistryLister returns a new ContainerRegistryLister.
type ContainerRegistryListerExpansion ¶
type ContainerRegistryListerExpansion interface{}
ContainerRegistryListerExpansion allows custom methods to be added to ContainerRegistryLister.
type ContainerRegistryNamespaceLister ¶
type ContainerRegistryNamespaceLister interface { // List lists all ContainerRegistries in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.ContainerRegistry, err error) // Get retrieves the ContainerRegistry from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.ContainerRegistry, error) ContainerRegistryNamespaceListerExpansion }
ContainerRegistryNamespaceLister helps list and get ContainerRegistries. All objects returned here must be treated as read-only.
type ContainerRegistryNamespaceListerExpansion ¶
type ContainerRegistryNamespaceListerExpansion interface{}
ContainerRegistryNamespaceListerExpansion allows custom methods to be added to ContainerRegistryNamespaceLister.
type DockerCredentialsLister ¶
type DockerCredentialsLister interface { // List lists all DockerCredentialses in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.DockerCredentials, err error) // DockerCredentialses returns an object that can list and get DockerCredentialses. DockerCredentialses(namespace string) DockerCredentialsNamespaceLister DockerCredentialsListerExpansion }
DockerCredentialsLister helps list DockerCredentialses. All objects returned here must be treated as read-only.
func NewDockerCredentialsLister ¶
func NewDockerCredentialsLister(indexer cache.Indexer) DockerCredentialsLister
NewDockerCredentialsLister returns a new DockerCredentialsLister.
type DockerCredentialsListerExpansion ¶
type DockerCredentialsListerExpansion interface{}
DockerCredentialsListerExpansion allows custom methods to be added to DockerCredentialsLister.
type DockerCredentialsNamespaceLister ¶
type DockerCredentialsNamespaceLister interface { // List lists all DockerCredentialses in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.DockerCredentials, err error) // Get retrieves the DockerCredentials from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.DockerCredentials, error) DockerCredentialsNamespaceListerExpansion }
DockerCredentialsNamespaceLister helps list and get DockerCredentialses. All objects returned here must be treated as read-only.
type DockerCredentialsNamespaceListerExpansion ¶
type DockerCredentialsNamespaceListerExpansion interface{}
DockerCredentialsNamespaceListerExpansion allows custom methods to be added to DockerCredentialsNamespaceLister.