Generated code for API changes to support CSI migration of inline volumes

Signed-off-by: Deep Debroy <ddebroy@docker.com>
This commit is contained in:
Deep Debroy
2019-05-30 09:34:53 +00:00
parent c34309acdf
commit df196226c4
22 changed files with 657 additions and 226 deletions

View File

@@ -377,6 +377,11 @@ func (in *VolumeAttachmentSource) DeepCopyInto(out *VolumeAttachmentSource) {
*out = new(string)
**out = **in
}
if in.InlineVolumeSpec != nil {
in, out := &in.InlineVolumeSpec, &out.InlineVolumeSpec
*out = new(core.PersistentVolumeSpec)
(*in).DeepCopyInto(*out)
}
return
}