mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-28 14:07:14 +00:00
70 lines
2.4 KiB
Go
Generated
70 lines
2.4 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 v1beta1
|
|
|
|
import (
|
|
v1beta1 "k8s.io/api/flowcontrol/v1beta1"
|
|
runtime "k8s.io/apimachinery/pkg/runtime"
|
|
)
|
|
|
|
// 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(&v1beta1.FlowSchema{}, func(obj interface{}) { SetObjectDefaults_FlowSchema(obj.(*v1beta1.FlowSchema)) })
|
|
scheme.AddTypeDefaultingFunc(&v1beta1.FlowSchemaList{}, func(obj interface{}) { SetObjectDefaults_FlowSchemaList(obj.(*v1beta1.FlowSchemaList)) })
|
|
scheme.AddTypeDefaultingFunc(&v1beta1.PriorityLevelConfiguration{}, func(obj interface{}) {
|
|
SetObjectDefaults_PriorityLevelConfiguration(obj.(*v1beta1.PriorityLevelConfiguration))
|
|
})
|
|
scheme.AddTypeDefaultingFunc(&v1beta1.PriorityLevelConfigurationList{}, func(obj interface{}) {
|
|
SetObjectDefaults_PriorityLevelConfigurationList(obj.(*v1beta1.PriorityLevelConfigurationList))
|
|
})
|
|
return nil
|
|
}
|
|
|
|
func SetObjectDefaults_FlowSchema(in *v1beta1.FlowSchema) {
|
|
SetDefaults_FlowSchemaSpec(&in.Spec)
|
|
}
|
|
|
|
func SetObjectDefaults_FlowSchemaList(in *v1beta1.FlowSchemaList) {
|
|
for i := range in.Items {
|
|
a := &in.Items[i]
|
|
SetObjectDefaults_FlowSchema(a)
|
|
}
|
|
}
|
|
|
|
func SetObjectDefaults_PriorityLevelConfiguration(in *v1beta1.PriorityLevelConfiguration) {
|
|
if in.Spec.Limited != nil {
|
|
SetDefaults_LimitedPriorityLevelConfiguration(in.Spec.Limited)
|
|
if in.Spec.Limited.LimitResponse.Queuing != nil {
|
|
SetDefaults_QueuingConfiguration(in.Spec.Limited.LimitResponse.Queuing)
|
|
}
|
|
}
|
|
}
|
|
|
|
func SetObjectDefaults_PriorityLevelConfigurationList(in *v1beta1.PriorityLevelConfigurationList) {
|
|
for i := range in.Items {
|
|
a := &in.Items[i]
|
|
SetObjectDefaults_PriorityLevelConfiguration(a)
|
|
}
|
|
}
|