mirror of https://github.com/kubernetes/kops.git
generate apispecs
This commit is contained in:
parent
cbee601739
commit
e68cb6303f
|
@ -5197,6 +5197,8 @@ func autoConvert_v1alpha2_OpenstackBlockStorageConfig_To_kops_OpenstackBlockStor
|
|||
out.IgnoreAZ = in.IgnoreAZ
|
||||
out.OverrideAZ = in.OverrideAZ
|
||||
out.CreateStorageClass = in.CreateStorageClass
|
||||
out.CSIPluginImage = in.CSIPluginImage
|
||||
out.CSITopologySupport = in.CSITopologySupport
|
||||
return nil
|
||||
}
|
||||
|
||||
|
@ -5210,6 +5212,8 @@ func autoConvert_kops_OpenstackBlockStorageConfig_To_v1alpha2_OpenstackBlockStor
|
|||
out.IgnoreAZ = in.IgnoreAZ
|
||||
out.OverrideAZ = in.OverrideAZ
|
||||
out.CreateStorageClass = in.CreateStorageClass
|
||||
out.CSIPluginImage = in.CSIPluginImage
|
||||
out.CSITopologySupport = in.CSITopologySupport
|
||||
return nil
|
||||
}
|
||||
|
||||
|
|
|
@ -3494,6 +3494,11 @@ func (in *OpenstackBlockStorageConfig) DeepCopyInto(out *OpenstackBlockStorageCo
|
|||
*out = new(bool)
|
||||
**out = **in
|
||||
}
|
||||
if in.CSITopologySupport != nil {
|
||||
in, out := &in.CSITopologySupport, &out.CSITopologySupport
|
||||
*out = new(bool)
|
||||
**out = **in
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
|
|
|
@ -3708,6 +3708,11 @@ func (in *OpenstackBlockStorageConfig) DeepCopyInto(out *OpenstackBlockStorageCo
|
|||
*out = new(bool)
|
||||
**out = **in
|
||||
}
|
||||
if in.CSITopologySupport != nil {
|
||||
in, out := &in.CSITopologySupport, &out.CSITopologySupport
|
||||
*out = new(bool)
|
||||
**out = **in
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue