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

generated changes

This commit is contained in:
Daishan Peng
2018-01-22 17:42:56 -07:00
committed by Darren Shepherd
parent 8a402f4698
commit f999bb990d
4 changed files with 13 additions and 2 deletions

View File

@@ -2204,6 +2204,13 @@ func (in *MachineStatus) DeepCopyInto(out *MachineStatus) {
(*out)[key] = val
}
}
if in.NodeTaints != nil {
in, out := &in.NodeTaints, &out.NodeTaints
*out = make([]v1.Taint, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
return
}