const Name … type DefaultBinder … var _ … // New creates a DefaultBinder. func New(_ context.Context, _ runtime.Object, handle framework.Handle) (framework.Plugin, error) { … } // Name returns the name of the plugin. func (b DefaultBinder) Name() string { … } // Bind binds pods to nodes using the k8s client. func (b DefaultBinder) Bind(ctx context.Context, state *framework.CycleState, p *v1.Pod, nodeName string) *framework.Status { … }