Documentation ¶
Index ¶
- Constants
- func DecodeInto(obj runtime.Object, into interface{}) error
- func NewFramework(r Registry, plugins *config.Plugins, args []config.PluginConfig, ...) (framework.Framework, error)
- type Option
- func WithClientSet(clientSet clientset.Interface) Option
- func WithEventRecorder(recorder events.EventRecorder) Option
- func WithExtenders(extenders []framework.Extender) Option
- func WithInformerFactory(informerFactory informers.SharedInformerFactory) Option
- func WithPodNominator(nominator framework.PodNominator) Option
- func WithProfileName(name string) Option
- func WithRunAllFilters(runAllFilters bool) Option
- func WithSnapshotSharedLister(snapshotSharedLister framework.SharedLister) Option
- type PluginFactory
- type Registry
Constants ¶
const (
// Filter is the name of the filter extension point.
Filter = "Filter"
)
Variables ¶
This section is empty.
Functions ¶
func DecodeInto ¶
DecodeInto decodes configuration whose type is *runtime.Unknown to the interface into.
Types ¶
type Option ¶
type Option func(*frameworkOptions)
Option for the frameworkImpl.
func WithClientSet ¶
WithClientSet sets clientSet for the scheduling frameworkImpl.
func WithEventRecorder ¶
func WithEventRecorder(recorder events.EventRecorder) Option
WithEventRecorder sets clientSet for the scheduling frameworkImpl.
func WithExtenders ¶
WithExtenders sets extenders for the scheduling frameworkImpl.
func WithInformerFactory ¶
func WithInformerFactory(informerFactory informers.SharedInformerFactory) Option
WithInformerFactory sets informer factory for the scheduling frameworkImpl.
func WithPodNominator ¶
func WithPodNominator(nominator framework.PodNominator) Option
WithPodNominator sets podNominator for the scheduling frameworkImpl.
func WithProfileName ¶
WithProfileName sets the profile name.
func WithRunAllFilters ¶
WithRunAllFilters sets the runAllFilters flag, which means RunFilterPlugins accumulates all failure Statuses.
func WithSnapshotSharedLister ¶
func WithSnapshotSharedLister(snapshotSharedLister framework.SharedLister) Option
WithSnapshotSharedLister sets the SharedLister of the snapshot.
type PluginFactory ¶
type PluginFactory = func(configuration runtime.Object, f framework.Handle) (framework.Plugin, error)
PluginFactory is a function that builds a plugin.
type Registry ¶
type Registry map[string]PluginFactory
Registry is a collection of all available plugins. The framework uses a registry to enable and initialize configured plugins. All plugins must be in the registry before initializing the framework.
func (Registry) Register ¶
func (r Registry) Register(name string, factory PluginFactory) error
Register adds a new plugin to the registry. If a plugin with the same name exists, it returns an error.
func (Registry) Unregister ¶
Unregister removes an existing plugin from the registry. If no plugin with the provided name exists, it returns an error.