
update bazel build fix get plugin config method initialize only needed plugins fix unit test fix import duplicate package update bazel add docstrings add weight field to plugin add plugin to v1alpha1 add plugins at appropriate extension points remove todo statement fix import package file path set plugin json schema add plugin unit test to option initial plugin in test integration initialize only needed plugins update bazel rename func change plugins needed logic remove v1 alias change the comment fix alias shorter remove blank line change docstrings fix map bool to struct add some docstrings add unreserve plugin fix docstrings move variable inside the for loop make if else statement cleaner remove plugin config from reserve plugin unit test add plugin config and reduce unnecessary options for unit test update bazel fix race condition fix permit plugin integration change plugins to be pointer change weight to int32 fix package alias initial queue sort plugin rename unreserve plugin redesign plugin struct update docstrings check queue sort plugin amount fix error message fix condition change plugin struct add disabled plugin for unit test fix docstrings handle nil plugin set
308 lines
8.6 KiB
Go
Generated
308 lines
8.6 KiB
Go
Generated
// +build !ignore_autogenerated
|
|
|
|
/*
|
|
Copyright 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.
|
|
*/
|
|
|
|
// Code generated by deepcopy-gen. DO NOT EDIT.
|
|
|
|
package config
|
|
|
|
import (
|
|
runtime "k8s.io/apimachinery/pkg/runtime"
|
|
)
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *KubeSchedulerConfiguration) DeepCopyInto(out *KubeSchedulerConfiguration) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.AlgorithmSource.DeepCopyInto(&out.AlgorithmSource)
|
|
out.LeaderElection = in.LeaderElection
|
|
out.ClientConnection = in.ClientConnection
|
|
out.DebuggingConfiguration = in.DebuggingConfiguration
|
|
if in.BindTimeoutSeconds != nil {
|
|
in, out := &in.BindTimeoutSeconds, &out.BindTimeoutSeconds
|
|
*out = new(int64)
|
|
**out = **in
|
|
}
|
|
if in.Plugins != nil {
|
|
in, out := &in.Plugins, &out.Plugins
|
|
*out = new(Plugins)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
if in.PluginConfig != nil {
|
|
in, out := &in.PluginConfig, &out.PluginConfig
|
|
*out = make([]PluginConfig, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubeSchedulerConfiguration.
|
|
func (in *KubeSchedulerConfiguration) DeepCopy() *KubeSchedulerConfiguration {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(KubeSchedulerConfiguration)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *KubeSchedulerConfiguration) DeepCopyObject() runtime.Object {
|
|
if c := in.DeepCopy(); c != nil {
|
|
return c
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *KubeSchedulerLeaderElectionConfiguration) DeepCopyInto(out *KubeSchedulerLeaderElectionConfiguration) {
|
|
*out = *in
|
|
out.LeaderElectionConfiguration = in.LeaderElectionConfiguration
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubeSchedulerLeaderElectionConfiguration.
|
|
func (in *KubeSchedulerLeaderElectionConfiguration) DeepCopy() *KubeSchedulerLeaderElectionConfiguration {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(KubeSchedulerLeaderElectionConfiguration)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *Plugin) DeepCopyInto(out *Plugin) {
|
|
*out = *in
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Plugin.
|
|
func (in *Plugin) DeepCopy() *Plugin {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(Plugin)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *PluginConfig) DeepCopyInto(out *PluginConfig) {
|
|
*out = *in
|
|
in.Args.DeepCopyInto(&out.Args)
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PluginConfig.
|
|
func (in *PluginConfig) DeepCopy() *PluginConfig {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(PluginConfig)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *PluginSet) DeepCopyInto(out *PluginSet) {
|
|
*out = *in
|
|
if in.Enabled != nil {
|
|
in, out := &in.Enabled, &out.Enabled
|
|
*out = make([]Plugin, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
if in.Disabled != nil {
|
|
in, out := &in.Disabled, &out.Disabled
|
|
*out = make([]Plugin, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PluginSet.
|
|
func (in *PluginSet) DeepCopy() *PluginSet {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(PluginSet)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *Plugins) DeepCopyInto(out *Plugins) {
|
|
*out = *in
|
|
if in.QueueSort != nil {
|
|
in, out := &in.QueueSort, &out.QueueSort
|
|
*out = new(PluginSet)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
if in.PreFilter != nil {
|
|
in, out := &in.PreFilter, &out.PreFilter
|
|
*out = new(PluginSet)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
if in.Filter != nil {
|
|
in, out := &in.Filter, &out.Filter
|
|
*out = new(PluginSet)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
if in.PostFilter != nil {
|
|
in, out := &in.PostFilter, &out.PostFilter
|
|
*out = new(PluginSet)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
if in.Score != nil {
|
|
in, out := &in.Score, &out.Score
|
|
*out = new(PluginSet)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
if in.NormalizeScore != nil {
|
|
in, out := &in.NormalizeScore, &out.NormalizeScore
|
|
*out = new(PluginSet)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
if in.Reserve != nil {
|
|
in, out := &in.Reserve, &out.Reserve
|
|
*out = new(PluginSet)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
if in.Permit != nil {
|
|
in, out := &in.Permit, &out.Permit
|
|
*out = new(PluginSet)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
if in.PreBind != nil {
|
|
in, out := &in.PreBind, &out.PreBind
|
|
*out = new(PluginSet)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
if in.Bind != nil {
|
|
in, out := &in.Bind, &out.Bind
|
|
*out = new(PluginSet)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
if in.PostBind != nil {
|
|
in, out := &in.PostBind, &out.PostBind
|
|
*out = new(PluginSet)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
if in.Unreserve != nil {
|
|
in, out := &in.Unreserve, &out.Unreserve
|
|
*out = new(PluginSet)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Plugins.
|
|
func (in *Plugins) DeepCopy() *Plugins {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(Plugins)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *SchedulerAlgorithmSource) DeepCopyInto(out *SchedulerAlgorithmSource) {
|
|
*out = *in
|
|
if in.Policy != nil {
|
|
in, out := &in.Policy, &out.Policy
|
|
*out = new(SchedulerPolicySource)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
if in.Provider != nil {
|
|
in, out := &in.Provider, &out.Provider
|
|
*out = new(string)
|
|
**out = **in
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SchedulerAlgorithmSource.
|
|
func (in *SchedulerAlgorithmSource) DeepCopy() *SchedulerAlgorithmSource {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(SchedulerAlgorithmSource)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *SchedulerPolicyConfigMapSource) DeepCopyInto(out *SchedulerPolicyConfigMapSource) {
|
|
*out = *in
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SchedulerPolicyConfigMapSource.
|
|
func (in *SchedulerPolicyConfigMapSource) DeepCopy() *SchedulerPolicyConfigMapSource {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(SchedulerPolicyConfigMapSource)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *SchedulerPolicyFileSource) DeepCopyInto(out *SchedulerPolicyFileSource) {
|
|
*out = *in
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SchedulerPolicyFileSource.
|
|
func (in *SchedulerPolicyFileSource) DeepCopy() *SchedulerPolicyFileSource {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(SchedulerPolicyFileSource)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *SchedulerPolicySource) DeepCopyInto(out *SchedulerPolicySource) {
|
|
*out = *in
|
|
if in.File != nil {
|
|
in, out := &in.File, &out.File
|
|
*out = new(SchedulerPolicyFileSource)
|
|
**out = **in
|
|
}
|
|
if in.ConfigMap != nil {
|
|
in, out := &in.ConfigMap, &out.ConfigMap
|
|
*out = new(SchedulerPolicyConfigMapSource)
|
|
**out = **in
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SchedulerPolicySource.
|
|
func (in *SchedulerPolicySource) DeepCopy() *SchedulerPolicySource {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(SchedulerPolicySource)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|