1
0
mirror of https://github.com/rancher/types.git synced 2025-08-30 19:32:18 +00:00

Generated changes

This commit is contained in:
Alena Prokharchyk 2019-03-12 16:48:18 -07:00
parent 2de136b4a4
commit 68532a907e

View File

@ -7201,7 +7201,11 @@ func (in *RancherKubernetesEngineConfig) DeepCopyInto(out *RancherKubernetesEngi
*out = new(RotateCertificates)
(*in).DeepCopyInto(*out)
}
in.DNS.DeepCopyInto(&out.DNS)
if in.DNS != nil {
in, out := &in.DNS, &out.DNS
*out = new(DNSConfig)
(*in).DeepCopyInto(*out)
}
return
}