Documentation
¶
Index ¶
- type DaemonSetLister
- type DaemonSetListerExpansion
- type DaemonSetNamespaceLister
- type DaemonSetNamespaceListerExpansion
- type DeploymentLister
- type DeploymentListerExpansion
- type DeploymentNamespaceLister
- type DeploymentNamespaceListerExpansion
- type IngressLister
- type IngressListerExpansion
- type IngressNamespaceLister
- type IngressNamespaceListerExpansion
- type ReplicaSetLister
- type ReplicaSetListerExpansion
- type ReplicaSetNamespaceLister
- type ReplicaSetNamespaceListerExpansion
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DaemonSetLister ¶
type DaemonSetLister interface {
// List lists all DaemonSets in the indexer.
List(selector labels.Selector) (ret []*extensions.DaemonSet, err error)
// DaemonSets returns an object that can list and get DaemonSets.
DaemonSets(namespace string) DaemonSetNamespaceLister
DaemonSetListerExpansion
}
DaemonSetLister helps list DaemonSets.
func NewDaemonSetLister ¶
func NewDaemonSetLister(indexer cache.Indexer) DaemonSetLister
NewDaemonSetLister returns a new DaemonSetLister.
type DaemonSetListerExpansion ¶
type DaemonSetListerExpansion interface {
GetPodDaemonSets(pod *api.Pod) ([]*extensions.DaemonSet, error)
}
DaemonSetListerExpansion allows custom methods to be added to DaemonSetLister.
type DaemonSetNamespaceLister ¶
type DaemonSetNamespaceLister interface {
// List lists all DaemonSets in the indexer for a given namespace.
List(selector labels.Selector) (ret []*extensions.DaemonSet, err error)
// Get retrieves the DaemonSet from the indexer for a given namespace and name.
Get(name string) (*extensions.DaemonSet, error)
DaemonSetNamespaceListerExpansion
}
DaemonSetNamespaceLister helps list and get DaemonSets.
type DaemonSetNamespaceListerExpansion ¶
type DaemonSetNamespaceListerExpansion interface{}
DaemonSetNamespaceListerExpansion allows custom methods to be added to DaemonSetNamespaceLister.
type DeploymentLister ¶
type DeploymentLister interface {
// List lists all Deployments in the indexer.
List(selector labels.Selector) (ret []*extensions.Deployment, err error)
// Deployments returns an object that can list and get Deployments.
Deployments(namespace string) DeploymentNamespaceLister
DeploymentListerExpansion
}
DeploymentLister helps list Deployments.
func NewDeploymentLister ¶
func NewDeploymentLister(indexer cache.Indexer) DeploymentLister
NewDeploymentLister returns a new DeploymentLister.
type DeploymentListerExpansion ¶
type DeploymentListerExpansion interface {
GetDeploymentsForReplicaSet(rs *extensions.ReplicaSet) ([]*extensions.Deployment, error)
}
DeploymentListerExpansion allows custom methods to be added to DeploymentLister.
type DeploymentNamespaceLister ¶
type DeploymentNamespaceLister interface {
// List lists all Deployments in the indexer for a given namespace.
List(selector labels.Selector) (ret []*extensions.Deployment, err error)
// Get retrieves the Deployment from the indexer for a given namespace and name.
Get(name string) (*extensions.Deployment, error)
DeploymentNamespaceListerExpansion
}
DeploymentNamespaceLister helps list and get Deployments.
type DeploymentNamespaceListerExpansion ¶
type DeploymentNamespaceListerExpansion interface{}
DeploymentNamespaceListerExpansion allows custom methods to be added to DeploymentNamespaceLister.
type IngressLister ¶
type IngressLister interface {
// List lists all Ingresses in the indexer.
List(selector labels.Selector) (ret []*extensions.Ingress, err error)
// Ingresses returns an object that can list and get Ingresses.
Ingresses(namespace string) IngressNamespaceLister
IngressListerExpansion
}
IngressLister helps list Ingresses.
func NewIngressLister ¶
func NewIngressLister(indexer cache.Indexer) IngressLister
NewIngressLister returns a new IngressLister.
type IngressListerExpansion ¶
type IngressListerExpansion interface{}
IngressListerExpansion allows custom methods to be added to IngressLister.
type IngressNamespaceLister ¶
type IngressNamespaceLister interface {
// List lists all Ingresses in the indexer for a given namespace.
List(selector labels.Selector) (ret []*extensions.Ingress, err error)
// Get retrieves the Ingress from the indexer for a given namespace and name.
Get(name string) (*extensions.Ingress, error)
IngressNamespaceListerExpansion
}
IngressNamespaceLister helps list and get Ingresses.
type IngressNamespaceListerExpansion ¶
type IngressNamespaceListerExpansion interface{}
IngressNamespaceListerExpansion allows custom methods to be added to IngressNamespaceLister.
type ReplicaSetLister ¶
type ReplicaSetLister interface {
// List lists all ReplicaSets in the indexer.
List(selector labels.Selector) (ret []*extensions.ReplicaSet, err error)
// ReplicaSets returns an object that can list and get ReplicaSets.
ReplicaSets(namespace string) ReplicaSetNamespaceLister
ReplicaSetListerExpansion
}
ReplicaSetLister helps list ReplicaSets.
func NewReplicaSetLister ¶
func NewReplicaSetLister(indexer cache.Indexer) ReplicaSetLister
NewReplicaSetLister returns a new ReplicaSetLister.
type ReplicaSetListerExpansion ¶
type ReplicaSetListerExpansion interface {
GetPodReplicaSets(pod *api.Pod) ([]*extensions.ReplicaSet, error)
}
ReplicaSetListerExpansion allows custom methods to be added to ReplicaSetLister.
type ReplicaSetNamespaceLister ¶
type ReplicaSetNamespaceLister interface {
// List lists all ReplicaSets in the indexer for a given namespace.
List(selector labels.Selector) (ret []*extensions.ReplicaSet, err error)
// Get retrieves the ReplicaSet from the indexer for a given namespace and name.
Get(name string) (*extensions.ReplicaSet, error)
ReplicaSetNamespaceListerExpansion
}
ReplicaSetNamespaceLister helps list and get ReplicaSets.
type ReplicaSetNamespaceListerExpansion ¶
type ReplicaSetNamespaceListerExpansion interface{}
ReplicaSetNamespaceListerExpansion allows custom methods to be added to ReplicaSetNamespaceLister.