713 lines
21 KiB
Go
713 lines
21 KiB
Go
//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 deepcopy-gen. DO NOT EDIT.
|
|
|
|
package v1beta1
|
|
|
|
import (
|
|
corev1 "k8s.io/api/core/v1"
|
|
v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
runtime "k8s.io/apimachinery/pkg/runtime"
|
|
apiv1 "k8s.io/component-base/tracing/api/v1"
|
|
)
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *CrashLoopBackOffConfig) DeepCopyInto(out *CrashLoopBackOffConfig) {
|
|
*out = *in
|
|
if in.MaxContainerRestartPeriod != nil {
|
|
in, out := &in.MaxContainerRestartPeriod, &out.MaxContainerRestartPeriod
|
|
*out = new(v1.Duration)
|
|
**out = **in
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CrashLoopBackOffConfig.
|
|
func (in *CrashLoopBackOffConfig) DeepCopy() *CrashLoopBackOffConfig {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(CrashLoopBackOffConfig)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *CredentialProvider) DeepCopyInto(out *CredentialProvider) {
|
|
*out = *in
|
|
if in.MatchImages != nil {
|
|
in, out := &in.MatchImages, &out.MatchImages
|
|
*out = make([]string, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
if in.DefaultCacheDuration != nil {
|
|
in, out := &in.DefaultCacheDuration, &out.DefaultCacheDuration
|
|
*out = new(v1.Duration)
|
|
**out = **in
|
|
}
|
|
if in.Args != nil {
|
|
in, out := &in.Args, &out.Args
|
|
*out = make([]string, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
if in.Env != nil {
|
|
in, out := &in.Env, &out.Env
|
|
*out = make([]ExecEnvVar, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CredentialProvider.
|
|
func (in *CredentialProvider) DeepCopy() *CredentialProvider {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(CredentialProvider)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *CredentialProviderConfig) DeepCopyInto(out *CredentialProviderConfig) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
if in.Providers != nil {
|
|
in, out := &in.Providers, &out.Providers
|
|
*out = make([]CredentialProvider, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CredentialProviderConfig.
|
|
func (in *CredentialProviderConfig) DeepCopy() *CredentialProviderConfig {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(CredentialProviderConfig)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *CredentialProviderConfig) 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 *ExecEnvVar) DeepCopyInto(out *ExecEnvVar) {
|
|
*out = *in
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExecEnvVar.
|
|
func (in *ExecEnvVar) DeepCopy() *ExecEnvVar {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ExecEnvVar)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *KubeletAnonymousAuthentication) DeepCopyInto(out *KubeletAnonymousAuthentication) {
|
|
*out = *in
|
|
if in.Enabled != nil {
|
|
in, out := &in.Enabled, &out.Enabled
|
|
*out = new(bool)
|
|
**out = **in
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubeletAnonymousAuthentication.
|
|
func (in *KubeletAnonymousAuthentication) DeepCopy() *KubeletAnonymousAuthentication {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(KubeletAnonymousAuthentication)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *KubeletAuthentication) DeepCopyInto(out *KubeletAuthentication) {
|
|
*out = *in
|
|
out.X509 = in.X509
|
|
in.Webhook.DeepCopyInto(&out.Webhook)
|
|
in.Anonymous.DeepCopyInto(&out.Anonymous)
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubeletAuthentication.
|
|
func (in *KubeletAuthentication) DeepCopy() *KubeletAuthentication {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(KubeletAuthentication)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *KubeletAuthorization) DeepCopyInto(out *KubeletAuthorization) {
|
|
*out = *in
|
|
out.Webhook = in.Webhook
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubeletAuthorization.
|
|
func (in *KubeletAuthorization) DeepCopy() *KubeletAuthorization {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(KubeletAuthorization)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *KubeletConfiguration) DeepCopyInto(out *KubeletConfiguration) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
if in.EnableServer != nil {
|
|
in, out := &in.EnableServer, &out.EnableServer
|
|
*out = new(bool)
|
|
**out = **in
|
|
}
|
|
out.SyncFrequency = in.SyncFrequency
|
|
out.FileCheckFrequency = in.FileCheckFrequency
|
|
out.HTTPCheckFrequency = in.HTTPCheckFrequency
|
|
if in.StaticPodURLHeader != nil {
|
|
in, out := &in.StaticPodURLHeader, &out.StaticPodURLHeader
|
|
*out = make(map[string][]string, len(*in))
|
|
for key, val := range *in {
|
|
var outVal []string
|
|
if val == nil {
|
|
(*out)[key] = nil
|
|
} else {
|
|
in, out := &val, &outVal
|
|
*out = make([]string, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
(*out)[key] = outVal
|
|
}
|
|
}
|
|
if in.TLSCipherSuites != nil {
|
|
in, out := &in.TLSCipherSuites, &out.TLSCipherSuites
|
|
*out = make([]string, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
in.Authentication.DeepCopyInto(&out.Authentication)
|
|
out.Authorization = in.Authorization
|
|
if in.RegistryPullQPS != nil {
|
|
in, out := &in.RegistryPullQPS, &out.RegistryPullQPS
|
|
*out = new(int32)
|
|
**out = **in
|
|
}
|
|
if in.PreloadedImagesVerificationAllowlist != nil {
|
|
in, out := &in.PreloadedImagesVerificationAllowlist, &out.PreloadedImagesVerificationAllowlist
|
|
*out = make([]string, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
if in.EventRecordQPS != nil {
|
|
in, out := &in.EventRecordQPS, &out.EventRecordQPS
|
|
*out = new(int32)
|
|
**out = **in
|
|
}
|
|
if in.EnableDebuggingHandlers != nil {
|
|
in, out := &in.EnableDebuggingHandlers, &out.EnableDebuggingHandlers
|
|
*out = new(bool)
|
|
**out = **in
|
|
}
|
|
if in.HealthzPort != nil {
|
|
in, out := &in.HealthzPort, &out.HealthzPort
|
|
*out = new(int32)
|
|
**out = **in
|
|
}
|
|
if in.OOMScoreAdj != nil {
|
|
in, out := &in.OOMScoreAdj, &out.OOMScoreAdj
|
|
*out = new(int32)
|
|
**out = **in
|
|
}
|
|
if in.ClusterDNS != nil {
|
|
in, out := &in.ClusterDNS, &out.ClusterDNS
|
|
*out = make([]string, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
out.StreamingConnectionIdleTimeout = in.StreamingConnectionIdleTimeout
|
|
out.NodeStatusUpdateFrequency = in.NodeStatusUpdateFrequency
|
|
out.NodeStatusReportFrequency = in.NodeStatusReportFrequency
|
|
out.ImageMinimumGCAge = in.ImageMinimumGCAge
|
|
out.ImageMaximumGCAge = in.ImageMaximumGCAge
|
|
if in.ImageGCHighThresholdPercent != nil {
|
|
in, out := &in.ImageGCHighThresholdPercent, &out.ImageGCHighThresholdPercent
|
|
*out = new(int32)
|
|
**out = **in
|
|
}
|
|
if in.ImageGCLowThresholdPercent != nil {
|
|
in, out := &in.ImageGCLowThresholdPercent, &out.ImageGCLowThresholdPercent
|
|
*out = new(int32)
|
|
**out = **in
|
|
}
|
|
out.VolumeStatsAggPeriod = in.VolumeStatsAggPeriod
|
|
if in.CgroupsPerQOS != nil {
|
|
in, out := &in.CgroupsPerQOS, &out.CgroupsPerQOS
|
|
*out = new(bool)
|
|
**out = **in
|
|
}
|
|
if in.SingleProcessOOMKill != nil {
|
|
in, out := &in.SingleProcessOOMKill, &out.SingleProcessOOMKill
|
|
*out = new(bool)
|
|
**out = **in
|
|
}
|
|
if in.CPUManagerPolicyOptions != nil {
|
|
in, out := &in.CPUManagerPolicyOptions, &out.CPUManagerPolicyOptions
|
|
*out = make(map[string]string, len(*in))
|
|
for key, val := range *in {
|
|
(*out)[key] = val
|
|
}
|
|
}
|
|
out.CPUManagerReconcilePeriod = in.CPUManagerReconcilePeriod
|
|
if in.TopologyManagerPolicyOptions != nil {
|
|
in, out := &in.TopologyManagerPolicyOptions, &out.TopologyManagerPolicyOptions
|
|
*out = make(map[string]string, len(*in))
|
|
for key, val := range *in {
|
|
(*out)[key] = val
|
|
}
|
|
}
|
|
if in.QOSReserved != nil {
|
|
in, out := &in.QOSReserved, &out.QOSReserved
|
|
*out = make(map[string]string, len(*in))
|
|
for key, val := range *in {
|
|
(*out)[key] = val
|
|
}
|
|
}
|
|
out.RuntimeRequestTimeout = in.RuntimeRequestTimeout
|
|
if in.PodPidsLimit != nil {
|
|
in, out := &in.PodPidsLimit, &out.PodPidsLimit
|
|
*out = new(int64)
|
|
**out = **in
|
|
}
|
|
if in.ResolverConfig != nil {
|
|
in, out := &in.ResolverConfig, &out.ResolverConfig
|
|
*out = new(string)
|
|
**out = **in
|
|
}
|
|
if in.CPUCFSQuota != nil {
|
|
in, out := &in.CPUCFSQuota, &out.CPUCFSQuota
|
|
*out = new(bool)
|
|
**out = **in
|
|
}
|
|
if in.CPUCFSQuotaPeriod != nil {
|
|
in, out := &in.CPUCFSQuotaPeriod, &out.CPUCFSQuotaPeriod
|
|
*out = new(v1.Duration)
|
|
**out = **in
|
|
}
|
|
if in.NodeStatusMaxImages != nil {
|
|
in, out := &in.NodeStatusMaxImages, &out.NodeStatusMaxImages
|
|
*out = new(int32)
|
|
**out = **in
|
|
}
|
|
if in.KubeAPIQPS != nil {
|
|
in, out := &in.KubeAPIQPS, &out.KubeAPIQPS
|
|
*out = new(int32)
|
|
**out = **in
|
|
}
|
|
if in.SerializeImagePulls != nil {
|
|
in, out := &in.SerializeImagePulls, &out.SerializeImagePulls
|
|
*out = new(bool)
|
|
**out = **in
|
|
}
|
|
if in.MaxParallelImagePulls != nil {
|
|
in, out := &in.MaxParallelImagePulls, &out.MaxParallelImagePulls
|
|
*out = new(int32)
|
|
**out = **in
|
|
}
|
|
if in.EvictionHard != nil {
|
|
in, out := &in.EvictionHard, &out.EvictionHard
|
|
*out = make(map[string]string, len(*in))
|
|
for key, val := range *in {
|
|
(*out)[key] = val
|
|
}
|
|
}
|
|
if in.EvictionSoft != nil {
|
|
in, out := &in.EvictionSoft, &out.EvictionSoft
|
|
*out = make(map[string]string, len(*in))
|
|
for key, val := range *in {
|
|
(*out)[key] = val
|
|
}
|
|
}
|
|
if in.EvictionSoftGracePeriod != nil {
|
|
in, out := &in.EvictionSoftGracePeriod, &out.EvictionSoftGracePeriod
|
|
*out = make(map[string]string, len(*in))
|
|
for key, val := range *in {
|
|
(*out)[key] = val
|
|
}
|
|
}
|
|
out.EvictionPressureTransitionPeriod = in.EvictionPressureTransitionPeriod
|
|
if in.EvictionMinimumReclaim != nil {
|
|
in, out := &in.EvictionMinimumReclaim, &out.EvictionMinimumReclaim
|
|
*out = make(map[string]string, len(*in))
|
|
for key, val := range *in {
|
|
(*out)[key] = val
|
|
}
|
|
}
|
|
if in.MergeDefaultEvictionSettings != nil {
|
|
in, out := &in.MergeDefaultEvictionSettings, &out.MergeDefaultEvictionSettings
|
|
*out = new(bool)
|
|
**out = **in
|
|
}
|
|
if in.EnableControllerAttachDetach != nil {
|
|
in, out := &in.EnableControllerAttachDetach, &out.EnableControllerAttachDetach
|
|
*out = new(bool)
|
|
**out = **in
|
|
}
|
|
if in.MakeIPTablesUtilChains != nil {
|
|
in, out := &in.MakeIPTablesUtilChains, &out.MakeIPTablesUtilChains
|
|
*out = new(bool)
|
|
**out = **in
|
|
}
|
|
if in.IPTablesMasqueradeBit != nil {
|
|
in, out := &in.IPTablesMasqueradeBit, &out.IPTablesMasqueradeBit
|
|
*out = new(int32)
|
|
**out = **in
|
|
}
|
|
if in.IPTablesDropBit != nil {
|
|
in, out := &in.IPTablesDropBit, &out.IPTablesDropBit
|
|
*out = new(int32)
|
|
**out = **in
|
|
}
|
|
if in.FeatureGates != nil {
|
|
in, out := &in.FeatureGates, &out.FeatureGates
|
|
*out = make(map[string]bool, len(*in))
|
|
for key, val := range *in {
|
|
(*out)[key] = val
|
|
}
|
|
}
|
|
if in.FailSwapOn != nil {
|
|
in, out := &in.FailSwapOn, &out.FailSwapOn
|
|
*out = new(bool)
|
|
**out = **in
|
|
}
|
|
out.MemorySwap = in.MemorySwap
|
|
if in.ContainerLogMaxFiles != nil {
|
|
in, out := &in.ContainerLogMaxFiles, &out.ContainerLogMaxFiles
|
|
*out = new(int32)
|
|
**out = **in
|
|
}
|
|
if in.ContainerLogMaxWorkers != nil {
|
|
in, out := &in.ContainerLogMaxWorkers, &out.ContainerLogMaxWorkers
|
|
*out = new(int32)
|
|
**out = **in
|
|
}
|
|
if in.ContainerLogMonitorInterval != nil {
|
|
in, out := &in.ContainerLogMonitorInterval, &out.ContainerLogMonitorInterval
|
|
*out = new(v1.Duration)
|
|
**out = **in
|
|
}
|
|
if in.SystemReserved != nil {
|
|
in, out := &in.SystemReserved, &out.SystemReserved
|
|
*out = make(map[string]string, len(*in))
|
|
for key, val := range *in {
|
|
(*out)[key] = val
|
|
}
|
|
}
|
|
if in.KubeReserved != nil {
|
|
in, out := &in.KubeReserved, &out.KubeReserved
|
|
*out = make(map[string]string, len(*in))
|
|
for key, val := range *in {
|
|
(*out)[key] = val
|
|
}
|
|
}
|
|
if in.EnforceNodeAllocatable != nil {
|
|
in, out := &in.EnforceNodeAllocatable, &out.EnforceNodeAllocatable
|
|
*out = make([]string, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
if in.AllowedUnsafeSysctls != nil {
|
|
in, out := &in.AllowedUnsafeSysctls, &out.AllowedUnsafeSysctls
|
|
*out = make([]string, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
in.Logging.DeepCopyInto(&out.Logging)
|
|
if in.EnableSystemLogHandler != nil {
|
|
in, out := &in.EnableSystemLogHandler, &out.EnableSystemLogHandler
|
|
*out = new(bool)
|
|
**out = **in
|
|
}
|
|
if in.EnableSystemLogQuery != nil {
|
|
in, out := &in.EnableSystemLogQuery, &out.EnableSystemLogQuery
|
|
*out = new(bool)
|
|
**out = **in
|
|
}
|
|
out.ShutdownGracePeriod = in.ShutdownGracePeriod
|
|
out.ShutdownGracePeriodCriticalPods = in.ShutdownGracePeriodCriticalPods
|
|
if in.ShutdownGracePeriodByPodPriority != nil {
|
|
in, out := &in.ShutdownGracePeriodByPodPriority, &out.ShutdownGracePeriodByPodPriority
|
|
*out = make([]ShutdownGracePeriodByPodPriority, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
in.CrashLoopBackOff.DeepCopyInto(&out.CrashLoopBackOff)
|
|
if in.ReservedMemory != nil {
|
|
in, out := &in.ReservedMemory, &out.ReservedMemory
|
|
*out = make([]MemoryReservation, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
if in.EnableProfilingHandler != nil {
|
|
in, out := &in.EnableProfilingHandler, &out.EnableProfilingHandler
|
|
*out = new(bool)
|
|
**out = **in
|
|
}
|
|
if in.EnableDebugFlagsHandler != nil {
|
|
in, out := &in.EnableDebugFlagsHandler, &out.EnableDebugFlagsHandler
|
|
*out = new(bool)
|
|
**out = **in
|
|
}
|
|
if in.SeccompDefault != nil {
|
|
in, out := &in.SeccompDefault, &out.SeccompDefault
|
|
*out = new(bool)
|
|
**out = **in
|
|
}
|
|
if in.MemoryThrottlingFactor != nil {
|
|
in, out := &in.MemoryThrottlingFactor, &out.MemoryThrottlingFactor
|
|
*out = new(float64)
|
|
**out = **in
|
|
}
|
|
if in.RegisterWithTaints != nil {
|
|
in, out := &in.RegisterWithTaints, &out.RegisterWithTaints
|
|
*out = make([]corev1.Taint, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
if in.RegisterNode != nil {
|
|
in, out := &in.RegisterNode, &out.RegisterNode
|
|
*out = new(bool)
|
|
**out = **in
|
|
}
|
|
if in.Tracing != nil {
|
|
in, out := &in.Tracing, &out.Tracing
|
|
*out = new(apiv1.TracingConfiguration)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
if in.LocalStorageCapacityIsolation != nil {
|
|
in, out := &in.LocalStorageCapacityIsolation, &out.LocalStorageCapacityIsolation
|
|
*out = new(bool)
|
|
**out = **in
|
|
}
|
|
if in.FailCgroupV1 != nil {
|
|
in, out := &in.FailCgroupV1, &out.FailCgroupV1
|
|
*out = new(bool)
|
|
**out = **in
|
|
}
|
|
if in.UserNamespaces != nil {
|
|
in, out := &in.UserNamespaces, &out.UserNamespaces
|
|
*out = new(UserNamespaces)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubeletConfiguration.
|
|
func (in *KubeletConfiguration) DeepCopy() *KubeletConfiguration {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(KubeletConfiguration)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *KubeletConfiguration) 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 *KubeletWebhookAuthentication) DeepCopyInto(out *KubeletWebhookAuthentication) {
|
|
*out = *in
|
|
if in.Enabled != nil {
|
|
in, out := &in.Enabled, &out.Enabled
|
|
*out = new(bool)
|
|
**out = **in
|
|
}
|
|
out.CacheTTL = in.CacheTTL
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubeletWebhookAuthentication.
|
|
func (in *KubeletWebhookAuthentication) DeepCopy() *KubeletWebhookAuthentication {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(KubeletWebhookAuthentication)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *KubeletWebhookAuthorization) DeepCopyInto(out *KubeletWebhookAuthorization) {
|
|
*out = *in
|
|
out.CacheAuthorizedTTL = in.CacheAuthorizedTTL
|
|
out.CacheUnauthorizedTTL = in.CacheUnauthorizedTTL
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubeletWebhookAuthorization.
|
|
func (in *KubeletWebhookAuthorization) DeepCopy() *KubeletWebhookAuthorization {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(KubeletWebhookAuthorization)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *KubeletX509Authentication) DeepCopyInto(out *KubeletX509Authentication) {
|
|
*out = *in
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubeletX509Authentication.
|
|
func (in *KubeletX509Authentication) DeepCopy() *KubeletX509Authentication {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(KubeletX509Authentication)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *MemoryReservation) DeepCopyInto(out *MemoryReservation) {
|
|
*out = *in
|
|
if in.Limits != nil {
|
|
in, out := &in.Limits, &out.Limits
|
|
*out = make(corev1.ResourceList, len(*in))
|
|
for key, val := range *in {
|
|
(*out)[key] = val.DeepCopy()
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MemoryReservation.
|
|
func (in *MemoryReservation) DeepCopy() *MemoryReservation {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(MemoryReservation)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *MemorySwapConfiguration) DeepCopyInto(out *MemorySwapConfiguration) {
|
|
*out = *in
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MemorySwapConfiguration.
|
|
func (in *MemorySwapConfiguration) DeepCopy() *MemorySwapConfiguration {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(MemorySwapConfiguration)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *SerializedNodeConfigSource) DeepCopyInto(out *SerializedNodeConfigSource) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.Source.DeepCopyInto(&out.Source)
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SerializedNodeConfigSource.
|
|
func (in *SerializedNodeConfigSource) DeepCopy() *SerializedNodeConfigSource {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(SerializedNodeConfigSource)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *SerializedNodeConfigSource) 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 *ShutdownGracePeriodByPodPriority) DeepCopyInto(out *ShutdownGracePeriodByPodPriority) {
|
|
*out = *in
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ShutdownGracePeriodByPodPriority.
|
|
func (in *ShutdownGracePeriodByPodPriority) DeepCopy() *ShutdownGracePeriodByPodPriority {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ShutdownGracePeriodByPodPriority)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *UserNamespaces) DeepCopyInto(out *UserNamespaces) {
|
|
*out = *in
|
|
if in.IDsPerPod != nil {
|
|
in, out := &in.IDsPerPod, &out.IDsPerPod
|
|
*out = new(int64)
|
|
**out = **in
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UserNamespaces.
|
|
func (in *UserNamespaces) DeepCopy() *UserNamespaces {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(UserNamespaces)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|