mirror of
https://github.com/rancher/types.git
synced 2025-09-18 16:10:58 +00:00
generated code
This commit is contained in:
committed by
Darren Shepherd
parent
3ca3cb6bd6
commit
44ce312ada
@@ -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 {
|
||||
|
Reference in New Issue
Block a user