Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BinderPluginCollection ¶
type BinderPluginCollection struct { // CheckTopology is a set of plugins that should be invoked when Binder try to check whether the pod can run on the topology CheckTopology []string // CheckConflicts is a set of plugins that should be invoked when Binder try to check whether the pod can run on the node CheckConflicts []string // Reserves is a set of plugins invoked when reserving/unreserving resources // after a node is assigned to run the pod. Reserves []string // Permits is a set of plugins that control binding of a Pod. These plugins can prevent or delay binding of a Pod. Permits []string // PreBinds is a set of plugins that should be invoked before a pod is bound. PreBinds []string // Binds is a set of plugins that should be invoked at "Bind" extension point of the scheduling framework. // The scheduler call these plugins in order. Scheduler skips the rest of these plugins as soon as one returns success. Binds []string // PostBinds is a set of plugins that should be invoked after a pod is successfully bound. PostBinds []string VictimCheckings []*framework.VictimCheckingPluginCollectionSpec }
Click to show internal directories.
Click to hide internal directories.