mirror of
https://github.com/rancher/types.git
synced 2025-09-16 06:49:21 +00:00
go generate
This commit is contained in:
committed by
Alena Prokharchyk
parent
365da17d01
commit
f3b0d3f5ed
@@ -7717,7 +7717,7 @@ func (in *RKEConfigNode) DeepCopyInto(out *RKEConfigNode) {
|
||||
}
|
||||
if in.Taints != nil {
|
||||
in, out := &in.Taints, &out.Taints
|
||||
*out = make([]v1.Taint, len(*in))
|
||||
*out = make([]RKETaint, len(*in))
|
||||
for i := range *in {
|
||||
(*in)[i].DeepCopyInto(&(*out)[i])
|
||||
}
|
||||
@@ -7771,7 +7771,7 @@ func (in *RKEConfigNodePlan) DeepCopyInto(out *RKEConfigNodePlan) {
|
||||
}
|
||||
if in.Taints != nil {
|
||||
in, out := &in.Taints, &out.Taints
|
||||
*out = make([]v1.Taint, len(*in))
|
||||
*out = make([]RKETaint, len(*in))
|
||||
for i := range *in {
|
||||
(*in)[i].DeepCopyInto(&(*out)[i])
|
||||
}
|
||||
@@ -8033,6 +8033,26 @@ func (in *RKESystemImages) DeepCopy() *RKESystemImages {
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *RKETaint) DeepCopyInto(out *RKETaint) {
|
||||
*out = *in
|
||||
if in.TimeAdded != nil {
|
||||
in, out := &in.TimeAdded, &out.TimeAdded
|
||||
*out = (*in).DeepCopy()
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RKETaint.
|
||||
func (in *RKETaint) DeepCopy() *RKETaint {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(RKETaint)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *RancherKubernetesEngineConfig) DeepCopyInto(out *RancherKubernetesEngineConfig) {
|
||||
*out = *in
|
||||
|
Reference in New Issue
Block a user