generated files

This commit is contained in:
lichuqiang
2018-06-05 09:44:10 +08:00
parent 9a77899ee5
commit 20654393ee
39 changed files with 1896 additions and 956 deletions

View File

@@ -69,6 +69,13 @@ func (in *StorageClass) DeepCopyInto(out *StorageClass) {
**out = **in
}
}
if in.AllowedTopologies != nil {
in, out := &in.AllowedTopologies, &out.AllowedTopologies
*out = make([]core.TopologySelectorTerm, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
return
}