Documentation
      ¶
    
    
  
    
  
    Index ¶
- type DaemonSetLister
 - type DaemonSetNamespaceLister
 - type DeploymentLister
 - type DeploymentNamespaceLister
 - type IngressLister
 - type IngressNamespaceLister
 - type NetworkPolicyLister
 - type NetworkPolicyNamespaceLister
 - type PodSecurityPolicyLister
 - type ReplicaSetLister
 - type ReplicaSetNamespaceLister
 - type ScaleLister
 - type ScaleNamespaceLister
 - type ThirdPartyResourceLister
 
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
}
    DaemonSetLister helps list DaemonSets.
func NewDaemonSetLister ¶
func NewDaemonSetLister(indexer cache.Indexer) DaemonSetLister
NewDaemonSetLister returns a new 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)
}
    DaemonSetNamespaceLister helps list and get DaemonSets.
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
}
    DeploymentLister helps list Deployments.
func NewDeploymentLister ¶
func NewDeploymentLister(indexer cache.Indexer) DeploymentLister
NewDeploymentLister returns a new 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)
}
    DeploymentNamespaceLister helps list and get Deployments.
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
}
    IngressLister helps list Ingresses.
func NewIngressLister ¶
func NewIngressLister(indexer cache.Indexer) IngressLister
NewIngressLister returns a new 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)
}
    IngressNamespaceLister helps list and get Ingresses.
type NetworkPolicyLister ¶
type NetworkPolicyLister interface {
	// List lists all NetworkPolicies in the indexer.
	List(selector labels.Selector) (ret []*extensions.NetworkPolicy, err error)
	// NetworkPolicies returns an object that can list and get NetworkPolicies.
	NetworkPolicies(namespace string) NetworkPolicyNamespaceLister
}
    NetworkPolicyLister helps list NetworkPolicies.
func NewNetworkPolicyLister ¶
func NewNetworkPolicyLister(indexer cache.Indexer) NetworkPolicyLister
NewNetworkPolicyLister returns a new NetworkPolicyLister.
type NetworkPolicyNamespaceLister ¶
type NetworkPolicyNamespaceLister interface {
	// List lists all NetworkPolicies in the indexer for a given namespace.
	List(selector labels.Selector) (ret []*extensions.NetworkPolicy, err error)
	// Get retrieves the NetworkPolicy from the indexer for a given namespace and name.
	Get(name string) (*extensions.NetworkPolicy, error)
}
    NetworkPolicyNamespaceLister helps list and get NetworkPolicies.
type PodSecurityPolicyLister ¶
type PodSecurityPolicyLister interface {
	// List lists all PodSecurityPolicies in the indexer.
	List(selector labels.Selector) (ret []*extensions.PodSecurityPolicy, err error)
	// Get retrieves the PodSecurityPolicy from the index for a given name.
	Get(name string) (*extensions.PodSecurityPolicy, error)
}
    PodSecurityPolicyLister helps list PodSecurityPolicies.
func NewPodSecurityPolicyLister ¶
func NewPodSecurityPolicyLister(indexer cache.Indexer) PodSecurityPolicyLister
NewPodSecurityPolicyLister returns a new PodSecurityPolicyLister.
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
}
    ReplicaSetLister helps list ReplicaSets.
func NewReplicaSetLister ¶
func NewReplicaSetLister(indexer cache.Indexer) ReplicaSetLister
NewReplicaSetLister returns a new 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)
}
    ReplicaSetNamespaceLister helps list and get ReplicaSets.
type ScaleLister ¶
type ScaleLister interface {
	// List lists all Scales in the indexer.
	List(selector labels.Selector) (ret []*extensions.Scale, err error)
	// Scales returns an object that can list and get Scales.
	Scales(namespace string) ScaleNamespaceLister
}
    ScaleLister helps list Scales.
func NewScaleLister ¶
func NewScaleLister(indexer cache.Indexer) ScaleLister
NewScaleLister returns a new ScaleLister.
type ScaleNamespaceLister ¶
type ScaleNamespaceLister interface {
	// List lists all Scales in the indexer for a given namespace.
	List(selector labels.Selector) (ret []*extensions.Scale, err error)
	// Get retrieves the Scale from the indexer for a given namespace and name.
	Get(name string) (*extensions.Scale, error)
}
    ScaleNamespaceLister helps list and get Scales.
type ThirdPartyResourceLister ¶
type ThirdPartyResourceLister interface {
	// List lists all ThirdPartyResources in the indexer.
	List(selector labels.Selector) (ret []*extensions.ThirdPartyResource, err error)
	// Get retrieves the ThirdPartyResource from the index for a given name.
	Get(name string) (*extensions.ThirdPartyResource, error)
}
    ThirdPartyResourceLister helps list ThirdPartyResources.
func NewThirdPartyResourceLister ¶
func NewThirdPartyResourceLister(indexer cache.Indexer) ThirdPartyResourceLister
NewThirdPartyResourceLister returns a new ThirdPartyResourceLister.