1
0
mirror of https://github.com/rancher/rke.git synced 2025-09-04 00:14:49 +00:00

go generate

This commit is contained in:
siva-muni
2022-12-28 14:08:30 +05:30
parent 0bc8e5b282
commit 17c72fe0a0
3 changed files with 1261 additions and 32 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

@@ -72,6 +72,19 @@ func (in *AciNetworkProvider) DeepCopyInto(out *AciNetworkProvider) {
*out = make([]string, len(*in)) *out = make([]string, len(*in))
copy(*out, *in) copy(*out, *in)
} }
if in.ServiceGraphEndpointAddServices != nil {
in, out := &in.ServiceGraphEndpointAddServices, &out.ServiceGraphEndpointAddServices
*out = make([]map[string]string, len(*in))
for i := range *in {
if (*in)[i] != nil {
in, out := &(*in)[i], &(*out)[i]
*out = make(map[string]string, len(*in))
for key, val := range *in {
(*out)[key] = val
}
}
}
}
return return
} }