mirror of https://github.com/k3s-io/k3s
362 lines
11 KiB
Go
362 lines
11 KiB
Go
// +build !ignore_autogenerated
|
|
|
|
/*
|
|
Copyright 2018 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.
|
|
*/
|
|
|
|
// This file was autogenerated by deepcopy-gen. Do not edit it manually!
|
|
|
|
package componentconfig
|
|
|
|
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 *ClientConnectionConfiguration) DeepCopyInto(out *ClientConnectionConfiguration) {
|
|
*out = *in
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClientConnectionConfiguration.
|
|
func (in *ClientConnectionConfiguration) DeepCopy() *ClientConnectionConfiguration {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ClientConnectionConfiguration)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *GroupResource) DeepCopyInto(out *GroupResource) {
|
|
*out = *in
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GroupResource.
|
|
func (in *GroupResource) DeepCopy() *GroupResource {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(GroupResource)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *IPVar) DeepCopyInto(out *IPVar) {
|
|
*out = *in
|
|
if in.Val != nil {
|
|
in, out := &in.Val, &out.Val
|
|
if *in == nil {
|
|
*out = nil
|
|
} else {
|
|
*out = new(string)
|
|
**out = **in
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IPVar.
|
|
func (in *IPVar) DeepCopy() *IPVar {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(IPVar)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *KubeControllerManagerConfiguration) DeepCopyInto(out *KubeControllerManagerConfiguration) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
if in.Controllers != nil {
|
|
in, out := &in.Controllers, &out.Controllers
|
|
*out = make([]string, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
out.ServiceSyncPeriod = in.ServiceSyncPeriod
|
|
out.NodeSyncPeriod = in.NodeSyncPeriod
|
|
out.RouteReconciliationPeriod = in.RouteReconciliationPeriod
|
|
out.ResourceQuotaSyncPeriod = in.ResourceQuotaSyncPeriod
|
|
out.NamespaceSyncPeriod = in.NamespaceSyncPeriod
|
|
out.PVClaimBinderSyncPeriod = in.PVClaimBinderSyncPeriod
|
|
out.MinResyncPeriod = in.MinResyncPeriod
|
|
out.HorizontalPodAutoscalerSyncPeriod = in.HorizontalPodAutoscalerSyncPeriod
|
|
out.HorizontalPodAutoscalerUpscaleForbiddenWindow = in.HorizontalPodAutoscalerUpscaleForbiddenWindow
|
|
out.HorizontalPodAutoscalerDownscaleForbiddenWindow = in.HorizontalPodAutoscalerDownscaleForbiddenWindow
|
|
out.DeploymentControllerSyncPeriod = in.DeploymentControllerSyncPeriod
|
|
out.PodEvictionTimeout = in.PodEvictionTimeout
|
|
out.NodeMonitorGracePeriod = in.NodeMonitorGracePeriod
|
|
out.NodeStartupGracePeriod = in.NodeStartupGracePeriod
|
|
out.NodeMonitorPeriod = in.NodeMonitorPeriod
|
|
out.ClusterSigningDuration = in.ClusterSigningDuration
|
|
out.LeaderElection = in.LeaderElection
|
|
out.VolumeConfiguration = in.VolumeConfiguration
|
|
out.ControllerStartInterval = in.ControllerStartInterval
|
|
if in.GCIgnoredResources != nil {
|
|
in, out := &in.GCIgnoredResources, &out.GCIgnoredResources
|
|
*out = make([]GroupResource, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
out.ReconcilerSyncLoopPeriod = in.ReconcilerSyncLoopPeriod
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubeControllerManagerConfiguration.
|
|
func (in *KubeControllerManagerConfiguration) DeepCopy() *KubeControllerManagerConfiguration {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(KubeControllerManagerConfiguration)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *KubeControllerManagerConfiguration) DeepCopyObject() runtime.Object {
|
|
if c := in.DeepCopy(); c != nil {
|
|
return c
|
|
} else {
|
|
return nil
|
|
}
|
|
}
|
|
|
|
// 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
|
|
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
|
|
} else {
|
|
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 *LeaderElectionConfiguration) DeepCopyInto(out *LeaderElectionConfiguration) {
|
|
*out = *in
|
|
out.LeaseDuration = in.LeaseDuration
|
|
out.RenewDeadline = in.RenewDeadline
|
|
out.RetryPeriod = in.RetryPeriod
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LeaderElectionConfiguration.
|
|
func (in *LeaderElectionConfiguration) DeepCopy() *LeaderElectionConfiguration {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(LeaderElectionConfiguration)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *PersistentVolumeRecyclerConfiguration) DeepCopyInto(out *PersistentVolumeRecyclerConfiguration) {
|
|
*out = *in
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PersistentVolumeRecyclerConfiguration.
|
|
func (in *PersistentVolumeRecyclerConfiguration) DeepCopy() *PersistentVolumeRecyclerConfiguration {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(PersistentVolumeRecyclerConfiguration)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *PortRangeVar) DeepCopyInto(out *PortRangeVar) {
|
|
*out = *in
|
|
if in.Val != nil {
|
|
in, out := &in.Val, &out.Val
|
|
if *in == nil {
|
|
*out = nil
|
|
} else {
|
|
*out = new(string)
|
|
**out = **in
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PortRangeVar.
|
|
func (in *PortRangeVar) DeepCopy() *PortRangeVar {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(PortRangeVar)
|
|
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
|
|
if *in == nil {
|
|
*out = nil
|
|
} else {
|
|
*out = new(SchedulerPolicySource)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
}
|
|
if in.Provider != nil {
|
|
in, out := &in.Provider, &out.Provider
|
|
if *in == nil {
|
|
*out = nil
|
|
} else {
|
|
*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
|
|
if *in == nil {
|
|
*out = nil
|
|
} else {
|
|
*out = new(SchedulerPolicyFileSource)
|
|
**out = **in
|
|
}
|
|
}
|
|
if in.ConfigMap != nil {
|
|
in, out := &in.ConfigMap, &out.ConfigMap
|
|
if *in == nil {
|
|
*out = nil
|
|
} else {
|
|
*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
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *VolumeConfiguration) DeepCopyInto(out *VolumeConfiguration) {
|
|
*out = *in
|
|
out.PersistentVolumeRecyclerConfiguration = in.PersistentVolumeRecyclerConfiguration
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VolumeConfiguration.
|
|
func (in *VolumeConfiguration) DeepCopy() *VolumeConfiguration {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(VolumeConfiguration)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|