package volumebinding
import "k8s.io/kubernetes/pkg/scheduler/framework/plugins/volumebinding"
Index ¶
- Constants
- func New(_ *runtime.Unknown, fh framework.FrameworkHandle) (framework.Plugin, error)
- type VolumeBinding
Constants ¶
const Name = "VolumeBinding"
Name is the name of the plugin used in Registry and configurations.
Functions ¶
func New ¶
New initializes a new plugin with volume binder and returns it.
Types ¶
type VolumeBinding ¶
type VolumeBinding struct {
// contains filtered or unexported fields
}
VolumeBinding is a plugin that binds pod volumes in scheduling.
func (*VolumeBinding) Filter ¶
func (pl *VolumeBinding) Filter(ctx context.Context, cs *framework.CycleState, pod *v1.Pod, nodeInfo *schedulernodeinfo.NodeInfo) *framework.Status
Filter invoked at the filter extension point. It evaluates if a pod can fit due to the volumes it requests, for both bound and unbound PVCs.
For PVCs that are bound, then it checks that the corresponding PV's node affinity is satisfied by the given node.
For PVCs that are unbound, it tries to find available PVs that can satisfy the PVC requirements and that the PV node affinity is satisfied by the given node.
The predicate returns true if all bound PVCs have compatible PVs with the node, and if all unbound PVCs can be matched with an available and node-compatible PV.
func (*VolumeBinding) Name ¶
func (pl *VolumeBinding) Name() string
Name returns name of the plugin. It is used in logs, etc.
Source Files ¶
volume_binding.go
- Version
- v1.18.14
- Published
- Dec 18, 2020
- Platform
- js/wasm
- Imports
- 6 packages
- Last checked
- 1 minute ago –
Tools for package owners.