Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CSINodeLister ¶ added in v0.17.0
type CSINodeLister interface { // List lists all CSINodes in the indexer. List(selector labels.Selector) (ret []*v1.CSINode, err error) // Get retrieves the CSINode from the index for a given name. Get(name string) (*v1.CSINode, error) CSINodeListerExpansion }
CSINodeLister helps list CSINodes.
func NewCSINodeLister ¶ added in v0.17.0
func NewCSINodeLister(indexer cache.Indexer) CSINodeLister
NewCSINodeLister returns a new CSINodeLister.
type CSINodeListerExpansion ¶ added in v0.17.0
type CSINodeListerExpansion interface{}
CSINodeListerExpansion allows custom methods to be added to CSINodeLister.
type StorageClassLister ¶
type StorageClassLister interface { // List lists all StorageClasses in the indexer. List(selector labels.Selector) (ret []*v1.StorageClass, err error) // Get retrieves the StorageClass from the index for a given name. Get(name string) (*v1.StorageClass, error) StorageClassListerExpansion }
StorageClassLister helps list StorageClasses.
func NewStorageClassLister ¶
func NewStorageClassLister(indexer cache.Indexer) StorageClassLister
NewStorageClassLister returns a new StorageClassLister.
type StorageClassListerExpansion ¶
type StorageClassListerExpansion interface{}
StorageClassListerExpansion allows custom methods to be added to StorageClassLister.
type VolumeAttachmentLister ¶
type VolumeAttachmentLister interface { // List lists all VolumeAttachments in the indexer. List(selector labels.Selector) (ret []*v1.VolumeAttachment, err error) // Get retrieves the VolumeAttachment from the index for a given name. Get(name string) (*v1.VolumeAttachment, error) VolumeAttachmentListerExpansion }
VolumeAttachmentLister helps list VolumeAttachments.
func NewVolumeAttachmentLister ¶
func NewVolumeAttachmentLister(indexer cache.Indexer) VolumeAttachmentLister
NewVolumeAttachmentLister returns a new VolumeAttachmentLister.
type VolumeAttachmentListerExpansion ¶
type VolumeAttachmentListerExpansion interface{}
VolumeAttachmentListerExpansion allows custom methods to be added to VolumeAttachmentLister.
Click to show internal directories.
Click to hide internal directories.