1
0
mirror of https://github.com/rancher/rke.git synced 2025-09-25 06:33:56 +00:00

go generate

This commit is contained in:
Jiaqi Luo
2022-12-28 14:38:56 -07:00
parent 91e00a3f30
commit e01697b536

View File

@@ -72,6 +72,19 @@ func (in *AciNetworkProvider) DeepCopyInto(out *AciNetworkProvider) {
*out = make([]string, len(*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
}