1
0
mirror of https://github.com/rancher/types.git synced 2025-09-13 13:33:06 +00:00

Generated changes

This commit is contained in:
Alena Prokharchyk
2018-01-12 15:12:39 -08:00
committed by Darren Shepherd
parent 4d68767f29
commit bebdb13122
3 changed files with 22 additions and 0 deletions

View File

@@ -2051,6 +2051,20 @@ func (in *MachineStatus) DeepCopyInto(out *MachineStatus) {
(*in).DeepCopyInto(*out)
}
}
if in.NodeAnnotations != nil {
in, out := &in.NodeAnnotations, &out.NodeAnnotations
*out = make(map[string]string, len(*in))
for key, val := range *in {
(*out)[key] = val
}
}
if in.NodeLabels != nil {
in, out := &in.NodeLabels, &out.NodeLabels
*out = make(map[string]string, len(*in))
for key, val := range *in {
(*out)[key] = val
}
}
return
}