kubernetes/pkg/scheduler/framework/api_calls/api_calls.go

44 lines
1.6 KiB
Go

/*
Copyright 2025 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 apicalls
import (
fwk "k8s.io/kube-scheduler/framework"
)
const (
PodStatusPatch fwk.APICallType = "pod_status_patch"
PodBinding fwk.APICallType = "pod_binding"
)
// Relevances is a built-in mapping types to relevances.
// Types of the same relevance should only be defined for different object types.
// Misconfiguration of this map can lead to unexpected system bahavior,
// so any change has to be well tested and done with care.
// This mapping can be replaced by the out-of-tree plugin in its init() function, if needed.
var Relevances = fwk.APICallRelevances{
PodStatusPatch: 1,
PodBinding: 2,
}
// Implementation is a built-in mapping types to calls' constructors.
// It's used to construct calls' objects in the scheduler framework and for easier replacement of those.
// This mapping can be replaced by the out-of-tree plugin in its init() function, if needed.
var Implementations = fwk.APICallImplementations[*PodStatusPatchCall, *PodBindingCall]{
PodStatusPatch: NewPodStatusPatchCall,
PodBinding: NewPodBindingCall,
}