regenerate files

This commit is contained in:
Tim Allclair
2018-08-23 13:32:10 -07:00
parent 4b8050e3fc
commit f5cc053901
23 changed files with 843 additions and 826 deletions

View File

@@ -3541,6 +3541,11 @@ func (in *PodSpec) DeepCopyInto(out *PodSpec) {
*out = make([]PodReadinessGate, len(*in))
copy(*out, *in)
}
if in.RuntimeClassName != nil {
in, out := &in.RuntimeClassName, &out.RuntimeClassName
*out = new(string)
**out = **in
}
return
}