1
0
mirror of https://github.com/rancher/rke.git synced 2025-07-12 22:58:51 +00:00

go generate

This commit is contained in:
vardhaman22 2025-03-04 21:35:52 +05:30
parent 1add22bc39
commit 66fef3cf79
3 changed files with 8 additions and 3 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1267,6 +1267,11 @@ func (in *NetworkConfig) DeepCopyInto(out *NetworkConfig) {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
if in.EnableBrNetfilter != nil {
in, out := &in.EnableBrNetfilter, &out.EnableBrNetfilter
*out = new(bool)
**out = **in
}
return
}