mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-29 14:37:00 +00:00
74 lines
3.0 KiB
Go
Generated
74 lines
3.0 KiB
Go
Generated
//go:build !ignore_autogenerated
|
|
// +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 defaulter-gen. DO NOT EDIT.
|
|
|
|
package v1
|
|
|
|
import (
|
|
runtime "k8s.io/apimachinery/pkg/runtime"
|
|
v1 "k8s.io/kube-scheduler/config/v1"
|
|
)
|
|
|
|
// RegisterDefaults adds defaulters functions to the given scheme.
|
|
// Public to allow building arbitrary schemes.
|
|
// All generated defaulters are covering - they call all nested defaulters.
|
|
func RegisterDefaults(scheme *runtime.Scheme) error {
|
|
scheme.AddTypeDefaultingFunc(&v1.DefaultPreemptionArgs{}, func(obj interface{}) { SetObjectDefaults_DefaultPreemptionArgs(obj.(*v1.DefaultPreemptionArgs)) })
|
|
scheme.AddTypeDefaultingFunc(&v1.InterPodAffinityArgs{}, func(obj interface{}) { SetObjectDefaults_InterPodAffinityArgs(obj.(*v1.InterPodAffinityArgs)) })
|
|
scheme.AddTypeDefaultingFunc(&v1.KubeSchedulerConfiguration{}, func(obj interface{}) {
|
|
SetObjectDefaults_KubeSchedulerConfiguration(obj.(*v1.KubeSchedulerConfiguration))
|
|
})
|
|
scheme.AddTypeDefaultingFunc(&v1.NodeResourcesBalancedAllocationArgs{}, func(obj interface{}) {
|
|
SetObjectDefaults_NodeResourcesBalancedAllocationArgs(obj.(*v1.NodeResourcesBalancedAllocationArgs))
|
|
})
|
|
scheme.AddTypeDefaultingFunc(&v1.NodeResourcesFitArgs{}, func(obj interface{}) { SetObjectDefaults_NodeResourcesFitArgs(obj.(*v1.NodeResourcesFitArgs)) })
|
|
scheme.AddTypeDefaultingFunc(&v1.PodTopologySpreadArgs{}, func(obj interface{}) { SetObjectDefaults_PodTopologySpreadArgs(obj.(*v1.PodTopologySpreadArgs)) })
|
|
scheme.AddTypeDefaultingFunc(&v1.VolumeBindingArgs{}, func(obj interface{}) { SetObjectDefaults_VolumeBindingArgs(obj.(*v1.VolumeBindingArgs)) })
|
|
return nil
|
|
}
|
|
|
|
func SetObjectDefaults_DefaultPreemptionArgs(in *v1.DefaultPreemptionArgs) {
|
|
SetDefaults_DefaultPreemptionArgs(in)
|
|
}
|
|
|
|
func SetObjectDefaults_InterPodAffinityArgs(in *v1.InterPodAffinityArgs) {
|
|
SetDefaults_InterPodAffinityArgs(in)
|
|
}
|
|
|
|
func SetObjectDefaults_KubeSchedulerConfiguration(in *v1.KubeSchedulerConfiguration) {
|
|
SetDefaults_KubeSchedulerConfiguration(in)
|
|
}
|
|
|
|
func SetObjectDefaults_NodeResourcesBalancedAllocationArgs(in *v1.NodeResourcesBalancedAllocationArgs) {
|
|
SetDefaults_NodeResourcesBalancedAllocationArgs(in)
|
|
}
|
|
|
|
func SetObjectDefaults_NodeResourcesFitArgs(in *v1.NodeResourcesFitArgs) {
|
|
SetDefaults_NodeResourcesFitArgs(in)
|
|
}
|
|
|
|
func SetObjectDefaults_PodTopologySpreadArgs(in *v1.PodTopologySpreadArgs) {
|
|
SetDefaults_PodTopologySpreadArgs(in)
|
|
}
|
|
|
|
func SetObjectDefaults_VolumeBindingArgs(in *v1.VolumeBindingArgs) {
|
|
SetDefaults_VolumeBindingArgs(in)
|
|
}
|