Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewRuntimeClassLister ¶
func NewRuntimeClassLister(indexer cache.Indexer) listersnodev1.RuntimeClassLister
NewRuntimeClassLister returns a new RuntimeClassLister. We assume that the indexer: - is fed by a cross-workspace LIST+WATCH - uses kcpcache.MetaClusterNamespaceKeyFunc as the key function - has the kcpcache.ClusterIndex as an index
Types ¶
type RuntimeClassClusterLister ¶
type RuntimeClassClusterLister interface {
// List lists all RuntimeClasses in the indexer.
// Objects returned here must be treated as read-only.
List(selector labels.Selector) (ret []*nodev1.RuntimeClass, err error)
// Cluster returns a lister that can list and get RuntimeClasses in one workspace.
Cluster(clusterName logicalcluster.Name) listersnodev1.RuntimeClassLister
RuntimeClassClusterListerExpansion
}
RuntimeClassClusterLister helps list RuntimeClasses across all workspaces, or scope down to a RuntimeClassLister for one workspace. All objects returned here must be treated as read-only.
func NewRuntimeClassClusterLister ¶
func NewRuntimeClassClusterLister(indexer cache.Indexer) RuntimeClassClusterLister
NewRuntimeClassClusterLister returns a new RuntimeClassClusterLister. We assume that the indexer: - is fed by a cross-workspace LIST+WATCH - uses kcpcache.MetaClusterNamespaceKeyFunc as the key function - has the kcpcache.ClusterIndex as an index
type RuntimeClassClusterListerExpansion ¶
type RuntimeClassClusterListerExpansion interface{}
RuntimeClassClusterListerExpansion allows custom methods to be added to RuntimeClassClusterLister.