1
0
mirror of https://github.com/rancher/types.git synced 2025-09-18 16:10:58 +00:00

generated code

This commit is contained in:
moelsayed
2018-02-24 14:19:30 +02:00
committed by Darren Shepherd
parent 3ca3cb6bd6
commit 44ce312ada

View File

@@ -4838,9 +4838,9 @@ func (in *RKEConfigNodePlan) DeepCopyInto(out *RKEConfigNodePlan) {
*out = *in
if in.Processes != nil {
in, out := &in.Processes, &out.Processes
*out = make([]Process, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
*out = make(map[string]Process, len(*in))
for key, val := range *in {
(*out)[key] = *val.DeepCopy()
}
}
if in.PortChecks != nil {