runtime

package
v0.16.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 21, 2023 License: Apache-2.0 Imports: 26 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Filter is the name of the filter extension point.
	Filter = "Filter"
)

Variables

This section is empty.

Functions

func NewFramework

func NewFramework(r Registry, profile *schedulerapis.SchedulerProfile, opts ...Option) (framework.Framework, error)

NewFramework initializes plugins given the configuration and the registry.

Types

type Option

type Option func(*frameworkOptions)

Option for the frameworkImpl.

func WithCache added in v0.10.0

func WithCache(cache cache.Cache) Option

WithCache sets scheduler cache for the scheduling frameworkImpl.

func WithClientSet

func WithClientSet(clientSet clusternet.Interface) Option

WithClientSet sets clientSet for the scheduling frameworkImpl.

func WithEventRecorder

func WithEventRecorder(recorder record.EventRecorder) Option

WithEventRecorder sets clientSet for the scheduling frameworkImpl.

func WithInformerFactory

func WithInformerFactory(informerFactory informers.SharedInformerFactory) Option

WithInformerFactory sets informer factory for the scheduling frameworkImpl.

func WithKubeConfig

func WithKubeConfig(kubeConfig *restclient.Config) Option

WithKubeConfig sets kubeConfig for the scheduling frameworkImpl.

func WithParallelism

func WithParallelism(parallelism int) Option

WithParallelism sets parallelism for the scheduling frameworkImpl.

func WithPercentageOfClustersToTolerate added in v0.16.0

func WithPercentageOfClustersToTolerate(percentageOfClustersToTolerate int32) Option

WithPercentageOfClustersToTolerate sets percentage of clusters to be tolerated for predicting failures.

func WithRunAllFilters

func WithRunAllFilters(runAllFilters bool) Option

WithRunAllFilters sets the runAllFilters flag, which means RunFilterPlugins accumulates all failure Statuses.

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) Merge

func (r Registry) Merge(in Registry) error

Merge merges the provided registry to the current one.

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

func (r Registry) Unregister(name string) error

Unregister removes an existing plugin from the registry. If no plugin with the provided name exists, it returns an error.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL