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

update vendor

This commit is contained in:
Aiwantaozi
2018-05-07 17:27:48 +08:00
parent 267f0d7124
commit 4d15fd3b47
5 changed files with 24 additions and 7 deletions

View File

@@ -2007,6 +2007,15 @@ func (in *ClusterLoggingStatus) DeepCopyInto(out *ClusterLoggingStatus) {
copy(*out, *in)
}
in.AppliedSpec.DeepCopyInto(&out.AppliedSpec)
if in.FailedSpec != nil {
in, out := &in.FailedSpec, &out.FailedSpec
if *in == nil {
*out = nil
} else {
*out = new(ClusterLoggingSpec)
(*in).DeepCopyInto(*out)
}
}
return
}