Documentation ¶
Index ¶
- type ControllerRevisionLister
- type ControllerRevisionListerExpansion
- type ControllerRevisionNamespaceLister
- type ControllerRevisionNamespaceListerExpansion
- type DeploymentLister
- type DeploymentListerExpansion
- type DeploymentNamespaceLister
- type DeploymentNamespaceListerExpansion
- type ScaleLister
- type ScaleListerExpansion
- type ScaleNamespaceLister
- type ScaleNamespaceListerExpansion
- type StatefulSetLister
- type StatefulSetListerExpansion
- type StatefulSetNamespaceLister
- type StatefulSetNamespaceListerExpansion
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ControllerRevisionLister ¶ added in v1.7.0
type ControllerRevisionLister interface { // List lists all ControllerRevisions in the indexer. List(selector labels.Selector) (ret []*v1beta1.ControllerRevision, err error) // ControllerRevisions returns an object that can list and get ControllerRevisions. ControllerRevisions(namespace string) ControllerRevisionNamespaceLister ControllerRevisionListerExpansion }
ControllerRevisionLister helps list ControllerRevisions.
func NewControllerRevisionLister ¶ added in v1.7.0
func NewControllerRevisionLister(indexer cache.Indexer) ControllerRevisionLister
NewControllerRevisionLister returns a new ControllerRevisionLister.
type ControllerRevisionListerExpansion ¶ added in v1.7.0
type ControllerRevisionListerExpansion interface{}
ControllerRevisionListerExpansion allows custom methods to be added to ControllerRevisionLister.
type ControllerRevisionNamespaceLister ¶ added in v1.7.0
type ControllerRevisionNamespaceLister interface { // List lists all ControllerRevisions in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1beta1.ControllerRevision, err error) // Get retrieves the ControllerRevision from the indexer for a given namespace and name. Get(name string) (*v1beta1.ControllerRevision, error) ControllerRevisionNamespaceListerExpansion }
ControllerRevisionNamespaceLister helps list and get ControllerRevisions.
type ControllerRevisionNamespaceListerExpansion ¶ added in v1.7.0
type ControllerRevisionNamespaceListerExpansion interface{}
ControllerRevisionNamespaceListerExpansion allows custom methods to be added to ControllerRevisionNamespaceLister.
type DeploymentLister ¶ added in v1.6.0
type DeploymentLister interface { // List lists all Deployments in the indexer. List(selector labels.Selector) (ret []*v1beta1.Deployment, err error) // Deployments returns an object that can list and get Deployments. Deployments(namespace string) DeploymentNamespaceLister DeploymentListerExpansion }
DeploymentLister helps list Deployments.
func NewDeploymentLister ¶ added in v1.6.0
func NewDeploymentLister(indexer cache.Indexer) DeploymentLister
NewDeploymentLister returns a new DeploymentLister.
type DeploymentListerExpansion ¶ added in v1.6.0
type DeploymentListerExpansion interface{}
DeploymentListerExpansion allows custom methods to be added to DeploymentLister.
type DeploymentNamespaceLister ¶ added in v1.6.0
type DeploymentNamespaceLister interface { // List lists all Deployments in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1beta1.Deployment, err error) // Get retrieves the Deployment from the indexer for a given namespace and name. Get(name string) (*v1beta1.Deployment, error) DeploymentNamespaceListerExpansion }
DeploymentNamespaceLister helps list and get Deployments.
type DeploymentNamespaceListerExpansion ¶ added in v1.6.0
type DeploymentNamespaceListerExpansion interface{}
DeploymentNamespaceListerExpansion allows custom methods to be added to DeploymentNamespaceLister.
type ScaleLister ¶ added in v1.6.0
type ScaleLister interface { // List lists all Scales in the indexer. List(selector labels.Selector) (ret []*v1beta1.Scale, err error) // Scales returns an object that can list and get Scales. Scales(namespace string) ScaleNamespaceLister ScaleListerExpansion }
ScaleLister helps list Scales.
func NewScaleLister ¶ added in v1.6.0
func NewScaleLister(indexer cache.Indexer) ScaleLister
NewScaleLister returns a new ScaleLister.
type ScaleListerExpansion ¶ added in v1.6.0
type ScaleListerExpansion interface{}
ScaleListerExpansion allows custom methods to be added to ScaleLister.
type ScaleNamespaceLister ¶ added in v1.6.0
type ScaleNamespaceLister interface { // List lists all Scales in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1beta1.Scale, err error) // Get retrieves the Scale from the indexer for a given namespace and name. Get(name string) (*v1beta1.Scale, error) ScaleNamespaceListerExpansion }
ScaleNamespaceLister helps list and get Scales.
type ScaleNamespaceListerExpansion ¶ added in v1.6.0
type ScaleNamespaceListerExpansion interface{}
ScaleNamespaceListerExpansion allows custom methods to be added to ScaleNamespaceLister.
type StatefulSetLister ¶
type StatefulSetLister interface { // List lists all StatefulSets in the indexer. List(selector labels.Selector) (ret []*v1beta1.StatefulSet, err error) // StatefulSets returns an object that can list and get StatefulSets. StatefulSets(namespace string) StatefulSetNamespaceLister StatefulSetListerExpansion }
StatefulSetLister helps list StatefulSets.
func NewStatefulSetLister ¶
func NewStatefulSetLister(indexer cache.Indexer) StatefulSetLister
NewStatefulSetLister returns a new StatefulSetLister.
type StatefulSetListerExpansion ¶
type StatefulSetListerExpansion interface {
GetPodStatefulSets(pod *v1.Pod) ([]*apps.StatefulSet, error)
}
StatefulSetListerExpansion allows custom methods to be added to StatefulSetLister.
type StatefulSetNamespaceLister ¶
type StatefulSetNamespaceLister interface { // List lists all StatefulSets in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1beta1.StatefulSet, err error) // Get retrieves the StatefulSet from the indexer for a given namespace and name. Get(name string) (*v1beta1.StatefulSet, error) StatefulSetNamespaceListerExpansion }
StatefulSetNamespaceLister helps list and get StatefulSets.
type StatefulSetNamespaceListerExpansion ¶
type StatefulSetNamespaceListerExpansion interface{}
StatefulSetNamespaceListerExpansion allows custom methods to be added to StatefulSetNamespaceLister.