package v1

import "k8s.io/client-go/listers/policy/v1"

Index

Types

type PodDisruptionBudgetLister

type PodDisruptionBudgetLister interface {
	// List lists all PodDisruptionBudgets in the indexer.
	// Objects returned here must be treated as read-only.
	List(selector labels.Selector) (ret []*v1.PodDisruptionBudget, err error)
	// PodDisruptionBudgets returns an object that can list and get PodDisruptionBudgets.
	PodDisruptionBudgets(namespace string) PodDisruptionBudgetNamespaceLister
	PodDisruptionBudgetListerExpansion
}

PodDisruptionBudgetLister helps list PodDisruptionBudgets. All objects returned here must be treated as read-only.

func NewPodDisruptionBudgetLister

func NewPodDisruptionBudgetLister(indexer cache.Indexer) PodDisruptionBudgetLister

NewPodDisruptionBudgetLister returns a new PodDisruptionBudgetLister.

type PodDisruptionBudgetListerExpansion

type PodDisruptionBudgetListerExpansion interface {
	GetPodPodDisruptionBudgets(pod *v1.Pod) ([]*policy.PodDisruptionBudget, error)
}

PodDisruptionBudgetListerExpansion allows custom methods to be added to PodDisruptionBudgetLister.

type PodDisruptionBudgetNamespaceLister

type PodDisruptionBudgetNamespaceLister interface {
	// List lists all PodDisruptionBudgets in the indexer for a given namespace.
	// Objects returned here must be treated as read-only.
	List(selector labels.Selector) (ret []*v1.PodDisruptionBudget, err error)
	// Get retrieves the PodDisruptionBudget from the indexer for a given namespace and name.
	// Objects returned here must be treated as read-only.
	Get(name string) (*v1.PodDisruptionBudget, error)
	PodDisruptionBudgetNamespaceListerExpansion
}

PodDisruptionBudgetNamespaceLister helps list and get PodDisruptionBudgets. All objects returned here must be treated as read-only.

type PodDisruptionBudgetNamespaceListerExpansion

type PodDisruptionBudgetNamespaceListerExpansion interface{}

PodDisruptionBudgetNamespaceListerExpansion allows custom methods to be added to PodDisruptionBudgetNamespaceLister.

Source Files

expansion_generated.go poddisruptionbudget.go poddisruptionbudget_expansion.go

Version
v0.21.5-rc.0
Published
Aug 12, 2021
Platform
js/wasm
Imports
8 packages
Last checked
29 minutes ago

Tools for package owners.