1
0
mirror of https://github.com/rancher/types.git synced 2025-07-31 04:49:37 +00:00

go generate

This commit is contained in:
galal-hussein 2018-04-03 20:55:35 +02:00 committed by Darren Shepherd
parent bc19db51b7
commit 0efe60ff1a

View File

@ -5537,6 +5537,20 @@ func (in *RKEConfigNodePlan) DeepCopyInto(out *RKEConfigNodePlan) {
*out = make([]File, len(*in))
copy(*out, *in)
}
if in.Annotations != nil {
in, out := &in.Annotations, &out.Annotations
*out = make(map[string]string, len(*in))
for key, val := range *in {
(*out)[key] = val
}
}
if in.Labels != nil {
in, out := &in.Labels, &out.Labels
*out = make(map[string]string, len(*in))
for key, val := range *in {
(*out)[key] = val
}
}
return
}