mirror of https://github.com/k3s-io/k3s
generated files
parent
8091c7975b
commit
ce2dfac296
|
@ -121,6 +121,7 @@ func autoConvert_v1alpha1_KubeSchedulerConfiguration_To_config_KubeSchedulerConf
|
||||||
out.DisablePreemption = in.DisablePreemption
|
out.DisablePreemption = in.DisablePreemption
|
||||||
out.PercentageOfNodesToScore = in.PercentageOfNodesToScore
|
out.PercentageOfNodesToScore = in.PercentageOfNodesToScore
|
||||||
out.FailureDomains = in.FailureDomains
|
out.FailureDomains = in.FailureDomains
|
||||||
|
out.BindTimeoutSeconds = (*int64)(unsafe.Pointer(in.BindTimeoutSeconds))
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -149,6 +150,7 @@ func autoConvert_config_KubeSchedulerConfiguration_To_v1alpha1_KubeSchedulerConf
|
||||||
out.DisablePreemption = in.DisablePreemption
|
out.DisablePreemption = in.DisablePreemption
|
||||||
out.PercentageOfNodesToScore = in.PercentageOfNodesToScore
|
out.PercentageOfNodesToScore = in.PercentageOfNodesToScore
|
||||||
out.FailureDomains = in.FailureDomains
|
out.FailureDomains = in.FailureDomains
|
||||||
|
out.BindTimeoutSeconds = (*int64)(unsafe.Pointer(in.BindTimeoutSeconds))
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -32,6 +32,11 @@ func (in *KubeSchedulerConfiguration) DeepCopyInto(out *KubeSchedulerConfigurati
|
||||||
out.LeaderElection = in.LeaderElection
|
out.LeaderElection = in.LeaderElection
|
||||||
out.ClientConnection = in.ClientConnection
|
out.ClientConnection = in.ClientConnection
|
||||||
out.DebuggingConfiguration = in.DebuggingConfiguration
|
out.DebuggingConfiguration = in.DebuggingConfiguration
|
||||||
|
if in.BindTimeoutSeconds != nil {
|
||||||
|
in, out := &in.BindTimeoutSeconds, &out.BindTimeoutSeconds
|
||||||
|
*out = new(int64)
|
||||||
|
**out = **in
|
||||||
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -32,6 +32,11 @@ func (in *KubeSchedulerConfiguration) DeepCopyInto(out *KubeSchedulerConfigurati
|
||||||
in.LeaderElection.DeepCopyInto(&out.LeaderElection)
|
in.LeaderElection.DeepCopyInto(&out.LeaderElection)
|
||||||
out.ClientConnection = in.ClientConnection
|
out.ClientConnection = in.ClientConnection
|
||||||
out.DebuggingConfiguration = in.DebuggingConfiguration
|
out.DebuggingConfiguration = in.DebuggingConfiguration
|
||||||
|
if in.BindTimeoutSeconds != nil {
|
||||||
|
in, out := &in.BindTimeoutSeconds, &out.BindTimeoutSeconds
|
||||||
|
*out = new(int64)
|
||||||
|
**out = **in
|
||||||
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue