1
0
mirror of https://github.com/rancher/types.git synced 2025-09-15 22:39:05 +00:00

Update generated code

This commit is contained in:
Darren Shepherd
2018-02-05 22:05:35 -07:00
parent 5ab6924482
commit fc97048596
4 changed files with 22 additions and 0 deletions

View File

@@ -1508,6 +1508,15 @@ func (in *ClusterStatus) DeepCopyInto(out *ClusterStatus) {
}
}
in.AppliedSpec.DeepCopyInto(&out.AppliedSpec)
if in.FailedSpec != nil {
in, out := &in.FailedSpec, &out.FailedSpec
if *in == nil {
*out = nil
} else {
*out = new(ClusterSpec)
(*in).DeepCopyInto(*out)
}
}
if in.Requested != nil {
in, out := &in.Requested, &out.Requested
*out = make(v1.ResourceList, len(*in))
@@ -2357,6 +2366,13 @@ func (in *ListenConfig) DeepCopyInto(out *ListenConfig) {
*out = make([]string, len(*in))
copy(*out, *in)
}
if in.GeneratedCerts != nil {
in, out := &in.GeneratedCerts, &out.GeneratedCerts
*out = make(map[string]string, len(*in))
for key, val := range *in {
(*out)[key] = val
}
}
if in.SubjectAlternativeNames != nil {
in, out := &in.SubjectAlternativeNames, &out.SubjectAlternativeNames
*out = make([]string, len(*in))