2016-07-15 17:27:51 +00:00
|
|
|
// +build !ignore_autogenerated
|
|
|
|
|
|
|
|
/*
|
|
|
|
Copyright 2016 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 (
|
|
|
|
conversion "k8s.io/kubernetes/pkg/conversion"
|
2016-08-11 17:50:10 +00:00
|
|
|
runtime "k8s.io/kubernetes/pkg/runtime"
|
2016-07-15 17:27:51 +00:00
|
|
|
config "k8s.io/kubernetes/pkg/util/config"
|
|
|
|
reflect "reflect"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2016-08-11 17:50:10 +00:00
|
|
|
SchemeBuilder.Register(RegisterDeepCopies)
|
|
|
|
}
|
|
|
|
|
|
|
|
// RegisterDeepCopies adds deep-copy functions to the given scheme. Public
|
|
|
|
// to allow building arbitrary schemes.
|
|
|
|
func RegisterDeepCopies(scheme *runtime.Scheme) error {
|
|
|
|
return scheme.AddGeneratedDeepCopyFuncs(
|
2016-08-10 07:12:40 +00:00
|
|
|
conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_componentconfig_IPVar, InType: reflect.TypeOf(&IPVar{})},
|
|
|
|
conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_componentconfig_KubeControllerManagerConfiguration, InType: reflect.TypeOf(&KubeControllerManagerConfiguration{})},
|
|
|
|
conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_componentconfig_KubeProxyConfiguration, InType: reflect.TypeOf(&KubeProxyConfiguration{})},
|
|
|
|
conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_componentconfig_KubeSchedulerConfiguration, InType: reflect.TypeOf(&KubeSchedulerConfiguration{})},
|
|
|
|
conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_componentconfig_KubeletConfiguration, InType: reflect.TypeOf(&KubeletConfiguration{})},
|
|
|
|
conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_componentconfig_LeaderElectionConfiguration, InType: reflect.TypeOf(&LeaderElectionConfiguration{})},
|
|
|
|
conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_componentconfig_PersistentVolumeRecyclerConfiguration, InType: reflect.TypeOf(&PersistentVolumeRecyclerConfiguration{})},
|
|
|
|
conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_componentconfig_PortRangeVar, InType: reflect.TypeOf(&PortRangeVar{})},
|
|
|
|
conversion.GeneratedDeepCopyFunc{Fn: DeepCopy_componentconfig_VolumeConfiguration, InType: reflect.TypeOf(&VolumeConfiguration{})},
|
2016-08-11 17:50:10 +00:00
|
|
|
)
|
2016-07-15 17:27:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func DeepCopy_componentconfig_IPVar(in interface{}, out interface{}, c *conversion.Cloner) error {
|
|
|
|
{
|
|
|
|
in := in.(*IPVar)
|
|
|
|
out := out.(*IPVar)
|
|
|
|
if in.Val != nil {
|
|
|
|
in, out := &in.Val, &out.Val
|
|
|
|
*out = new(string)
|
|
|
|
**out = **in
|
|
|
|
} else {
|
|
|
|
out.Val = nil
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func DeepCopy_componentconfig_KubeControllerManagerConfiguration(in interface{}, out interface{}, c *conversion.Cloner) error {
|
|
|
|
{
|
|
|
|
in := in.(*KubeControllerManagerConfiguration)
|
|
|
|
out := out.(*KubeControllerManagerConfiguration)
|
|
|
|
out.TypeMeta = in.TypeMeta
|
|
|
|
out.Port = in.Port
|
|
|
|
out.Address = in.Address
|
|
|
|
out.CloudProvider = in.CloudProvider
|
|
|
|
out.CloudConfigFile = in.CloudConfigFile
|
|
|
|
out.ConcurrentEndpointSyncs = in.ConcurrentEndpointSyncs
|
|
|
|
out.ConcurrentRSSyncs = in.ConcurrentRSSyncs
|
|
|
|
out.ConcurrentRCSyncs = in.ConcurrentRCSyncs
|
2016-07-26 05:35:40 +00:00
|
|
|
out.ConcurrentServiceSyncs = in.ConcurrentServiceSyncs
|
2016-07-15 17:27:51 +00:00
|
|
|
out.ConcurrentResourceQuotaSyncs = in.ConcurrentResourceQuotaSyncs
|
|
|
|
out.ConcurrentDeploymentSyncs = in.ConcurrentDeploymentSyncs
|
|
|
|
out.ConcurrentDaemonSetSyncs = in.ConcurrentDaemonSetSyncs
|
|
|
|
out.ConcurrentJobSyncs = in.ConcurrentJobSyncs
|
|
|
|
out.ConcurrentNamespaceSyncs = in.ConcurrentNamespaceSyncs
|
|
|
|
out.ConcurrentSATokenSyncs = in.ConcurrentSATokenSyncs
|
|
|
|
out.LookupCacheSizeForRC = in.LookupCacheSizeForRC
|
|
|
|
out.LookupCacheSizeForRS = in.LookupCacheSizeForRS
|
|
|
|
out.LookupCacheSizeForDaemonSet = in.LookupCacheSizeForDaemonSet
|
|
|
|
out.ServiceSyncPeriod = in.ServiceSyncPeriod
|
|
|
|
out.NodeSyncPeriod = in.NodeSyncPeriod
|
|
|
|
out.ResourceQuotaSyncPeriod = in.ResourceQuotaSyncPeriod
|
|
|
|
out.NamespaceSyncPeriod = in.NamespaceSyncPeriod
|
|
|
|
out.PVClaimBinderSyncPeriod = in.PVClaimBinderSyncPeriod
|
|
|
|
out.MinResyncPeriod = in.MinResyncPeriod
|
|
|
|
out.TerminatedPodGCThreshold = in.TerminatedPodGCThreshold
|
|
|
|
out.HorizontalPodAutoscalerSyncPeriod = in.HorizontalPodAutoscalerSyncPeriod
|
|
|
|
out.DeploymentControllerSyncPeriod = in.DeploymentControllerSyncPeriod
|
|
|
|
out.PodEvictionTimeout = in.PodEvictionTimeout
|
|
|
|
out.DeletingPodsQps = in.DeletingPodsQps
|
|
|
|
out.DeletingPodsBurst = in.DeletingPodsBurst
|
|
|
|
out.NodeMonitorGracePeriod = in.NodeMonitorGracePeriod
|
|
|
|
out.RegisterRetryCount = in.RegisterRetryCount
|
|
|
|
out.NodeStartupGracePeriod = in.NodeStartupGracePeriod
|
|
|
|
out.NodeMonitorPeriod = in.NodeMonitorPeriod
|
|
|
|
out.ServiceAccountKeyFile = in.ServiceAccountKeyFile
|
2016-07-18 23:43:57 +00:00
|
|
|
out.ClusterSigningCertFile = in.ClusterSigningCertFile
|
|
|
|
out.ClusterSigningKeyFile = in.ClusterSigningKeyFile
|
2016-08-08 22:36:18 +00:00
|
|
|
out.ApproveAllKubeletCSRsForGroup = in.ApproveAllKubeletCSRsForGroup
|
2016-07-15 17:27:51 +00:00
|
|
|
out.EnableProfiling = in.EnableProfiling
|
|
|
|
out.ClusterName = in.ClusterName
|
|
|
|
out.ClusterCIDR = in.ClusterCIDR
|
|
|
|
out.ServiceCIDR = in.ServiceCIDR
|
|
|
|
out.NodeCIDRMaskSize = in.NodeCIDRMaskSize
|
|
|
|
out.AllocateNodeCIDRs = in.AllocateNodeCIDRs
|
|
|
|
out.ConfigureCloudRoutes = in.ConfigureCloudRoutes
|
|
|
|
out.RootCAFile = in.RootCAFile
|
|
|
|
out.ContentType = in.ContentType
|
|
|
|
out.KubeAPIQPS = in.KubeAPIQPS
|
|
|
|
out.KubeAPIBurst = in.KubeAPIBurst
|
|
|
|
out.LeaderElection = in.LeaderElection
|
|
|
|
out.VolumeConfiguration = in.VolumeConfiguration
|
|
|
|
out.ControllerStartInterval = in.ControllerStartInterval
|
|
|
|
out.EnableGarbageCollector = in.EnableGarbageCollector
|
|
|
|
out.ConcurrentGCSyncs = in.ConcurrentGCSyncs
|
2016-08-05 12:50:19 +00:00
|
|
|
out.NodeEvictionRate = in.NodeEvictionRate
|
|
|
|
out.SecondaryNodeEvictionRate = in.SecondaryNodeEvictionRate
|
|
|
|
out.LargeClusterSizeThreshold = in.LargeClusterSizeThreshold
|
|
|
|
out.UnhealthyZoneThreshold = in.UnhealthyZoneThreshold
|
2016-07-15 17:27:51 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func DeepCopy_componentconfig_KubeProxyConfiguration(in interface{}, out interface{}, c *conversion.Cloner) error {
|
|
|
|
{
|
|
|
|
in := in.(*KubeProxyConfiguration)
|
|
|
|
out := out.(*KubeProxyConfiguration)
|
|
|
|
out.TypeMeta = in.TypeMeta
|
|
|
|
out.BindAddress = in.BindAddress
|
|
|
|
out.ClusterCIDR = in.ClusterCIDR
|
|
|
|
out.HealthzBindAddress = in.HealthzBindAddress
|
|
|
|
out.HealthzPort = in.HealthzPort
|
|
|
|
out.HostnameOverride = in.HostnameOverride
|
|
|
|
if in.IPTablesMasqueradeBit != nil {
|
|
|
|
in, out := &in.IPTablesMasqueradeBit, &out.IPTablesMasqueradeBit
|
|
|
|
*out = new(int32)
|
|
|
|
**out = **in
|
|
|
|
} else {
|
|
|
|
out.IPTablesMasqueradeBit = nil
|
|
|
|
}
|
|
|
|
out.IPTablesSyncPeriod = in.IPTablesSyncPeriod
|
|
|
|
out.KubeconfigPath = in.KubeconfigPath
|
|
|
|
out.MasqueradeAll = in.MasqueradeAll
|
|
|
|
out.Master = in.Master
|
|
|
|
if in.OOMScoreAdj != nil {
|
|
|
|
in, out := &in.OOMScoreAdj, &out.OOMScoreAdj
|
|
|
|
*out = new(int32)
|
|
|
|
**out = **in
|
|
|
|
} else {
|
|
|
|
out.OOMScoreAdj = nil
|
|
|
|
}
|
|
|
|
out.Mode = in.Mode
|
|
|
|
out.PortRange = in.PortRange
|
|
|
|
out.ResourceContainer = in.ResourceContainer
|
|
|
|
out.UDPIdleTimeout = in.UDPIdleTimeout
|
|
|
|
out.ConntrackMax = in.ConntrackMax
|
2016-07-13 04:51:44 +00:00
|
|
|
out.ConntrackMaxPerCore = in.ConntrackMaxPerCore
|
2016-07-15 17:27:51 +00:00
|
|
|
out.ConntrackTCPEstablishedTimeout = in.ConntrackTCPEstablishedTimeout
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func DeepCopy_componentconfig_KubeSchedulerConfiguration(in interface{}, out interface{}, c *conversion.Cloner) error {
|
|
|
|
{
|
|
|
|
in := in.(*KubeSchedulerConfiguration)
|
|
|
|
out := out.(*KubeSchedulerConfiguration)
|
|
|
|
out.TypeMeta = in.TypeMeta
|
|
|
|
out.Port = in.Port
|
|
|
|
out.Address = in.Address
|
|
|
|
out.AlgorithmProvider = in.AlgorithmProvider
|
|
|
|
out.PolicyConfigFile = in.PolicyConfigFile
|
|
|
|
out.EnableProfiling = in.EnableProfiling
|
|
|
|
out.ContentType = in.ContentType
|
|
|
|
out.KubeAPIQPS = in.KubeAPIQPS
|
|
|
|
out.KubeAPIBurst = in.KubeAPIBurst
|
|
|
|
out.SchedulerName = in.SchedulerName
|
|
|
|
out.HardPodAffinitySymmetricWeight = in.HardPodAffinitySymmetricWeight
|
|
|
|
out.FailureDomains = in.FailureDomains
|
|
|
|
out.LeaderElection = in.LeaderElection
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func DeepCopy_componentconfig_KubeletConfiguration(in interface{}, out interface{}, c *conversion.Cloner) error {
|
|
|
|
{
|
|
|
|
in := in.(*KubeletConfiguration)
|
|
|
|
out := out.(*KubeletConfiguration)
|
|
|
|
out.TypeMeta = in.TypeMeta
|
2016-08-03 16:22:40 +00:00
|
|
|
out.PodManifestPath = in.PodManifestPath
|
2016-07-15 17:27:51 +00:00
|
|
|
out.SyncFrequency = in.SyncFrequency
|
|
|
|
out.FileCheckFrequency = in.FileCheckFrequency
|
|
|
|
out.HTTPCheckFrequency = in.HTTPCheckFrequency
|
|
|
|
out.ManifestURL = in.ManifestURL
|
|
|
|
out.ManifestURLHeader = in.ManifestURLHeader
|
|
|
|
out.EnableServer = in.EnableServer
|
|
|
|
out.Address = in.Address
|
|
|
|
out.Port = in.Port
|
|
|
|
out.ReadOnlyPort = in.ReadOnlyPort
|
|
|
|
out.TLSCertFile = in.TLSCertFile
|
|
|
|
out.TLSPrivateKeyFile = in.TLSPrivateKeyFile
|
|
|
|
out.CertDirectory = in.CertDirectory
|
|
|
|
out.HostnameOverride = in.HostnameOverride
|
|
|
|
out.PodInfraContainerImage = in.PodInfraContainerImage
|
|
|
|
out.DockerEndpoint = in.DockerEndpoint
|
|
|
|
out.RootDirectory = in.RootDirectory
|
|
|
|
out.SeccompProfileRoot = in.SeccompProfileRoot
|
|
|
|
out.AllowPrivileged = in.AllowPrivileged
|
|
|
|
if in.HostNetworkSources != nil {
|
|
|
|
in, out := &in.HostNetworkSources, &out.HostNetworkSources
|
|
|
|
*out = make([]string, len(*in))
|
|
|
|
copy(*out, *in)
|
|
|
|
} else {
|
|
|
|
out.HostNetworkSources = nil
|
|
|
|
}
|
|
|
|
if in.HostPIDSources != nil {
|
|
|
|
in, out := &in.HostPIDSources, &out.HostPIDSources
|
|
|
|
*out = make([]string, len(*in))
|
|
|
|
copy(*out, *in)
|
|
|
|
} else {
|
|
|
|
out.HostPIDSources = nil
|
|
|
|
}
|
|
|
|
if in.HostIPCSources != nil {
|
|
|
|
in, out := &in.HostIPCSources, &out.HostIPCSources
|
|
|
|
*out = make([]string, len(*in))
|
|
|
|
copy(*out, *in)
|
|
|
|
} else {
|
|
|
|
out.HostIPCSources = nil
|
|
|
|
}
|
|
|
|
out.RegistryPullQPS = in.RegistryPullQPS
|
|
|
|
out.RegistryBurst = in.RegistryBurst
|
|
|
|
out.EventRecordQPS = in.EventRecordQPS
|
|
|
|
out.EventBurst = in.EventBurst
|
|
|
|
out.EnableDebuggingHandlers = in.EnableDebuggingHandlers
|
|
|
|
out.MinimumGCAge = in.MinimumGCAge
|
|
|
|
out.MaxPerPodContainerCount = in.MaxPerPodContainerCount
|
|
|
|
out.MaxContainerCount = in.MaxContainerCount
|
|
|
|
out.CAdvisorPort = in.CAdvisorPort
|
|
|
|
out.HealthzPort = in.HealthzPort
|
|
|
|
out.HealthzBindAddress = in.HealthzBindAddress
|
|
|
|
out.OOMScoreAdj = in.OOMScoreAdj
|
|
|
|
out.RegisterNode = in.RegisterNode
|
|
|
|
out.ClusterDomain = in.ClusterDomain
|
|
|
|
out.MasterServiceNamespace = in.MasterServiceNamespace
|
|
|
|
out.ClusterDNS = in.ClusterDNS
|
|
|
|
out.StreamingConnectionIdleTimeout = in.StreamingConnectionIdleTimeout
|
|
|
|
out.NodeStatusUpdateFrequency = in.NodeStatusUpdateFrequency
|
|
|
|
out.ImageMinimumGCAge = in.ImageMinimumGCAge
|
|
|
|
out.ImageGCHighThresholdPercent = in.ImageGCHighThresholdPercent
|
|
|
|
out.ImageGCLowThresholdPercent = in.ImageGCLowThresholdPercent
|
|
|
|
out.LowDiskSpaceThresholdMB = in.LowDiskSpaceThresholdMB
|
|
|
|
out.VolumeStatsAggPeriod = in.VolumeStatsAggPeriod
|
|
|
|
out.NetworkPluginName = in.NetworkPluginName
|
2016-08-10 16:09:43 +00:00
|
|
|
out.NetworkPluginMTU = in.NetworkPluginMTU
|
2016-07-15 17:27:51 +00:00
|
|
|
out.NetworkPluginDir = in.NetworkPluginDir
|
|
|
|
out.VolumePluginDir = in.VolumePluginDir
|
|
|
|
out.CloudProvider = in.CloudProvider
|
|
|
|
out.CloudConfigFile = in.CloudConfigFile
|
|
|
|
out.KubeletCgroups = in.KubeletCgroups
|
2016-07-13 04:51:44 +00:00
|
|
|
out.CgroupsPerQOS = in.CgroupsPerQOS
|
2016-07-15 17:27:51 +00:00
|
|
|
out.RuntimeCgroups = in.RuntimeCgroups
|
|
|
|
out.SystemCgroups = in.SystemCgroups
|
|
|
|
out.CgroupRoot = in.CgroupRoot
|
|
|
|
out.ContainerRuntime = in.ContainerRuntime
|
2016-08-08 07:40:53 +00:00
|
|
|
out.RemoteRuntimeEndpoint = in.RemoteRuntimeEndpoint
|
|
|
|
out.RemoteImageEndpoint = in.RemoteImageEndpoint
|
2016-07-15 17:27:51 +00:00
|
|
|
out.RuntimeRequestTimeout = in.RuntimeRequestTimeout
|
|
|
|
out.RktPath = in.RktPath
|
|
|
|
out.RktAPIEndpoint = in.RktAPIEndpoint
|
|
|
|
out.RktStage1Image = in.RktStage1Image
|
|
|
|
out.LockFilePath = in.LockFilePath
|
|
|
|
out.ExitOnLockContention = in.ExitOnLockContention
|
|
|
|
out.ConfigureCBR0 = in.ConfigureCBR0
|
|
|
|
out.HairpinMode = in.HairpinMode
|
|
|
|
out.BabysitDaemons = in.BabysitDaemons
|
|
|
|
out.MaxPods = in.MaxPods
|
|
|
|
out.NvidiaGPUs = in.NvidiaGPUs
|
|
|
|
out.DockerExecHandlerName = in.DockerExecHandlerName
|
|
|
|
out.PodCIDR = in.PodCIDR
|
|
|
|
out.ResolverConfig = in.ResolverConfig
|
|
|
|
out.CPUCFSQuota = in.CPUCFSQuota
|
|
|
|
out.Containerized = in.Containerized
|
|
|
|
out.MaxOpenFiles = in.MaxOpenFiles
|
|
|
|
out.ReconcileCIDR = in.ReconcileCIDR
|
|
|
|
out.RegisterSchedulable = in.RegisterSchedulable
|
|
|
|
out.ContentType = in.ContentType
|
|
|
|
out.KubeAPIQPS = in.KubeAPIQPS
|
|
|
|
out.KubeAPIBurst = in.KubeAPIBurst
|
|
|
|
out.SerializeImagePulls = in.SerializeImagePulls
|
|
|
|
out.ExperimentalFlannelOverlay = in.ExperimentalFlannelOverlay
|
|
|
|
out.OutOfDiskTransitionFrequency = in.OutOfDiskTransitionFrequency
|
|
|
|
out.NodeIP = in.NodeIP
|
|
|
|
if in.NodeLabels != nil {
|
|
|
|
in, out := &in.NodeLabels, &out.NodeLabels
|
|
|
|
*out = make(map[string]string)
|
|
|
|
for key, val := range *in {
|
|
|
|
(*out)[key] = val
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
out.NodeLabels = nil
|
|
|
|
}
|
|
|
|
out.NonMasqueradeCIDR = in.NonMasqueradeCIDR
|
|
|
|
out.EnableCustomMetrics = in.EnableCustomMetrics
|
|
|
|
out.EvictionHard = in.EvictionHard
|
|
|
|
out.EvictionSoft = in.EvictionSoft
|
|
|
|
out.EvictionSoftGracePeriod = in.EvictionSoftGracePeriod
|
|
|
|
out.EvictionPressureTransitionPeriod = in.EvictionPressureTransitionPeriod
|
|
|
|
out.EvictionMaxPodGracePeriod = in.EvictionMaxPodGracePeriod
|
2016-07-20 22:15:13 +00:00
|
|
|
out.EvictionMinimumReclaim = in.EvictionMinimumReclaim
|
2016-07-15 17:27:51 +00:00
|
|
|
out.PodsPerCore = in.PodsPerCore
|
|
|
|
out.EnableControllerAttachDetach = in.EnableControllerAttachDetach
|
|
|
|
if in.SystemReserved != nil {
|
|
|
|
in, out := &in.SystemReserved, &out.SystemReserved
|
|
|
|
*out = make(config.ConfigurationMap)
|
|
|
|
for key, val := range *in {
|
|
|
|
(*out)[key] = val
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
out.SystemReserved = nil
|
|
|
|
}
|
|
|
|
if in.KubeReserved != nil {
|
|
|
|
in, out := &in.KubeReserved, &out.KubeReserved
|
|
|
|
*out = make(config.ConfigurationMap)
|
|
|
|
for key, val := range *in {
|
|
|
|
(*out)[key] = val
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
out.KubeReserved = nil
|
|
|
|
}
|
2016-08-11 11:49:19 +00:00
|
|
|
out.ProtectKernelDefaults = in.ProtectKernelDefaults
|
2016-08-17 20:01:27 +00:00
|
|
|
out.MakeIPTablesUtilChains = in.MakeIPTablesUtilChains
|
|
|
|
out.IPTablesMasqueradeBit = in.IPTablesMasqueradeBit
|
|
|
|
out.IPTablesDropBit = in.IPTablesDropBit
|
2016-08-25 09:17:52 +00:00
|
|
|
if in.AllowedUnsafeSysctls != nil {
|
|
|
|
in, out := &in.AllowedUnsafeSysctls, &out.AllowedUnsafeSysctls
|
|
|
|
*out = make([]string, len(*in))
|
|
|
|
copy(*out, *in)
|
|
|
|
} else {
|
|
|
|
out.AllowedUnsafeSysctls = nil
|
|
|
|
}
|
2016-07-15 17:27:51 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func DeepCopy_componentconfig_LeaderElectionConfiguration(in interface{}, out interface{}, c *conversion.Cloner) error {
|
|
|
|
{
|
|
|
|
in := in.(*LeaderElectionConfiguration)
|
|
|
|
out := out.(*LeaderElectionConfiguration)
|
|
|
|
out.LeaderElect = in.LeaderElect
|
|
|
|
out.LeaseDuration = in.LeaseDuration
|
|
|
|
out.RenewDeadline = in.RenewDeadline
|
|
|
|
out.RetryPeriod = in.RetryPeriod
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func DeepCopy_componentconfig_PersistentVolumeRecyclerConfiguration(in interface{}, out interface{}, c *conversion.Cloner) error {
|
|
|
|
{
|
|
|
|
in := in.(*PersistentVolumeRecyclerConfiguration)
|
|
|
|
out := out.(*PersistentVolumeRecyclerConfiguration)
|
|
|
|
out.MaximumRetry = in.MaximumRetry
|
|
|
|
out.MinimumTimeoutNFS = in.MinimumTimeoutNFS
|
|
|
|
out.PodTemplateFilePathNFS = in.PodTemplateFilePathNFS
|
|
|
|
out.IncrementTimeoutNFS = in.IncrementTimeoutNFS
|
|
|
|
out.PodTemplateFilePathHostPath = in.PodTemplateFilePathHostPath
|
|
|
|
out.MinimumTimeoutHostPath = in.MinimumTimeoutHostPath
|
|
|
|
out.IncrementTimeoutHostPath = in.IncrementTimeoutHostPath
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func DeepCopy_componentconfig_PortRangeVar(in interface{}, out interface{}, c *conversion.Cloner) error {
|
|
|
|
{
|
|
|
|
in := in.(*PortRangeVar)
|
|
|
|
out := out.(*PortRangeVar)
|
|
|
|
if in.Val != nil {
|
|
|
|
in, out := &in.Val, &out.Val
|
|
|
|
*out = new(string)
|
|
|
|
**out = **in
|
|
|
|
} else {
|
|
|
|
out.Val = nil
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func DeepCopy_componentconfig_VolumeConfiguration(in interface{}, out interface{}, c *conversion.Cloner) error {
|
|
|
|
{
|
|
|
|
in := in.(*VolumeConfiguration)
|
|
|
|
out := out.(*VolumeConfiguration)
|
|
|
|
out.EnableHostPathProvisioning = in.EnableHostPathProvisioning
|
|
|
|
out.EnableDynamicProvisioning = in.EnableDynamicProvisioning
|
|
|
|
out.PersistentVolumeRecyclerConfiguration = in.PersistentVolumeRecyclerConfiguration
|
|
|
|
out.FlexVolumePluginDir = in.FlexVolumePluginDir
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|