client-gok8s.io/client-go/listers/apps/v1beta1 Index | Files

package v1beta1

import "k8s.io/client-go/listers/apps/v1beta1"

Index

Types

type DeploymentLister

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

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.
	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

type DeploymentNamespaceListerExpansion interface{}

DeploymentNamespaceListerExpansion allows custom methods to be added to DeploymentNamespaeLister.

type ScaleLister

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

func NewScaleLister(indexer cache.Indexer) ScaleLister

NewScaleLister returns a new ScaleLister.

type ScaleListerExpansion

type ScaleListerExpansion interface{}

ScaleListerExpansion allows custom methods to be added to ScaleLister.

type ScaleNamespaceLister

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

type ScaleNamespaceListerExpansion interface{}

ScaleNamespaceListerExpansion allows custom methods to be added to ScaleNamespaeLister.

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 StatefulSetNamespaeLister.

Source Files

deployment.go expansion_generated.go scale.go statefulset.go statefulset_expansion.go

Version
v3.0.0+incompatible
Published
Jul 5, 2017
Platform
js/wasm
Imports
8 packages
Last checked
2 hours ago

Tools for package owners.