1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- /*
- Copyright 2020 The Kubernetes Authors.
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- */
- package defaultbinder
- import (
- "context"
- v1 "k8s.io/api/core/v1"
- metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
- "k8s.io/apimachinery/pkg/runtime"
- "k8s.io/klog"
- framework "k8s.io/kubernetes/pkg/scheduler/framework/v1alpha1"
- )
- // Name of the plugin used in the plugin registry and configurations.
- const Name = "DefaultBinder"
- // DefaultBinder binds pods to nodes using a k8s client.
- type DefaultBinder struct {
- handle framework.FrameworkHandle
- }
- var _ framework.BindPlugin = &DefaultBinder{}
- // New creates a DefaultBinder.
- func New(_ *runtime.Unknown, handle framework.FrameworkHandle) (framework.Plugin, error) {
- return &DefaultBinder{handle: handle}, nil
- }
- // Name returns the name of the plugin.
- func (b DefaultBinder) Name() string {
- return Name
- }
- // 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 {
- klog.V(3).Infof("Attempting to bind %v/%v to %v", p.Namespace, p.Name, nodeName)
- binding := &v1.Binding{
- ObjectMeta: metav1.ObjectMeta{Namespace: p.Namespace, Name: p.Name, UID: p.UID},
- Target: v1.ObjectReference{Kind: "Node", Name: nodeName},
- }
- err := b.handle.ClientSet().CoreV1().Pods(binding.Namespace).Bind(binding)
- if err != nil {
- return framework.NewStatus(framework.Error, err.Error())
- }
- return nil
- }
|