 Documentation
      ¶
      Documentation
      ¶
    
    
  
    
  
    Index ¶
- type ControllerRevisionLister
- type ControllerRevisionListerExpansion
- type ControllerRevisionNamespaceLister
- type ControllerRevisionNamespaceListerExpansion
- type DeploymentLister
- type DeploymentListerExpansion
- type DeploymentNamespaceLister
- type DeploymentNamespaceListerExpansion
- 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 ¶
type ControllerRevisionLister interface {
	// List lists all ControllerRevisions in the indexer.
	// Objects returned here must be treated as read-only.
	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. All objects returned here must be treated as read-only.
func NewControllerRevisionLister ¶
func NewControllerRevisionLister(indexer cache.Indexer) ControllerRevisionLister
NewControllerRevisionLister returns a new ControllerRevisionLister.
type ControllerRevisionListerExpansion ¶
type ControllerRevisionListerExpansion interface{}
    ControllerRevisionListerExpansion allows custom methods to be added to ControllerRevisionLister.
type ControllerRevisionNamespaceLister ¶
type ControllerRevisionNamespaceLister interface {
	// List lists all ControllerRevisions in the indexer for a given namespace.
	// Objects returned here must be treated as read-only.
	List(selector labels.Selector) (ret []*v1beta1.ControllerRevision, err error)
	// Get retrieves the ControllerRevision from the indexer for a given namespace and name.
	// Objects returned here must be treated as read-only.
	Get(name string) (*v1beta1.ControllerRevision, error)
	ControllerRevisionNamespaceListerExpansion
}
    ControllerRevisionNamespaceLister helps list and get ControllerRevisions. All objects returned here must be treated as read-only.
type ControllerRevisionNamespaceListerExpansion ¶
type ControllerRevisionNamespaceListerExpansion interface{}
    ControllerRevisionNamespaceListerExpansion allows custom methods to be added to ControllerRevisionNamespaceLister.
type DeploymentLister ¶
type DeploymentLister interface {
	// List lists all Deployments in the indexer.
	// Objects returned here must be treated as read-only.
	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. All objects returned here must be treated as read-only.
func NewDeploymentLister ¶
func NewDeploymentLister(indexer cache.Indexer) DeploymentLister
NewDeploymentLister returns a new DeploymentLister.
type DeploymentListerExpansion ¶
type DeploymentListerExpansion interface{}
    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.
	// Objects returned here must be treated as read-only.
	List(selector labels.Selector) (ret []*v1beta1.Deployment, err error)
	// Get retrieves the Deployment from the indexer for a given namespace and name.
	// Objects returned here must be treated as read-only.
	Get(name string) (*v1beta1.Deployment, error)
	DeploymentNamespaceListerExpansion
}
    DeploymentNamespaceLister helps list and get Deployments. All objects returned here must be treated as read-only.
type DeploymentNamespaceListerExpansion ¶
type DeploymentNamespaceListerExpansion interface{}
    DeploymentNamespaceListerExpansion allows custom methods to be added to DeploymentNamespaceLister.
type StatefulSetLister ¶
type StatefulSetLister interface {
	// List lists all StatefulSets in the indexer.
	// Objects returned here must be treated as read-only.
	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. All objects returned here must be treated as read-only.
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.
	// Objects returned here must be treated as read-only.
	List(selector labels.Selector) (ret []*v1beta1.StatefulSet, err error)
	// Get retrieves the StatefulSet from the indexer for a given namespace and name.
	// Objects returned here must be treated as read-only.
	Get(name string) (*v1beta1.StatefulSet, error)
	StatefulSetNamespaceListerExpansion
}
    StatefulSetNamespaceLister helps list and get StatefulSets. All objects returned here must be treated as read-only.
type StatefulSetNamespaceListerExpansion ¶
type StatefulSetNamespaceListerExpansion interface{}
    StatefulSetNamespaceListerExpansion allows custom methods to be added to StatefulSetNamespaceLister.