1
0
mirror of https://github.com/rancher/types.git synced 2025-09-18 07:52:41 +00:00

generated changes

This commit is contained in:
Prachi Damle
2019-01-24 22:47:03 -08:00
committed by Alena Prokharchyk
parent e7054a0f04
commit 52a935b2d4
2 changed files with 20 additions and 3 deletions

View File

@@ -2906,6 +2906,21 @@ func (in *GlobalDNSStatus) DeepCopyInto(out *GlobalDNSStatus) {
*out = make([]string, len(*in))
copy(*out, *in)
}
if in.ClusterEndpoints != nil {
in, out := &in.ClusterEndpoints, &out.ClusterEndpoints
*out = make(map[string][]string, len(*in))
for key, val := range *in {
var outVal []string
if val == nil {
(*out)[key] = nil
} else {
in, out := &val, &outVal
*out = make([]string, len(*in))
copy(*out, *in)
}
(*out)[key] = outVal
}
}
return
}