Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type RolloutLister ¶
type RolloutLister interface { // List lists all Rollouts in the indexer. List(selector labels.Selector) (ret []*v1alpha1.Rollout, err error) // Rollouts returns an object that can list and get Rollouts. Rollouts(namespace string) RolloutNamespaceLister RolloutListerExpansion }
RolloutLister helps list Rollouts.
func NewRolloutLister ¶
func NewRolloutLister(indexer cache.Indexer) RolloutLister
NewRolloutLister returns a new RolloutLister.
type RolloutListerExpansion ¶
type RolloutListerExpansion interface{}
RolloutListerExpansion allows custom methods to be added to RolloutLister.
type RolloutNamespaceLister ¶
type RolloutNamespaceLister interface { // List lists all Rollouts in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.Rollout, err error) // Get retrieves the Rollout from the indexer for a given namespace and name. Get(name string) (*v1alpha1.Rollout, error) RolloutNamespaceListerExpansion }
RolloutNamespaceLister helps list and get Rollouts.
type RolloutNamespaceListerExpansion ¶
type RolloutNamespaceListerExpansion interface{}
RolloutNamespaceListerExpansion allows custom methods to be added to RolloutNamespaceLister.
Click to show internal directories.
Click to hide internal directories.