mirror of https://github.com/kubernetes/kops.git
Run make apimachinery and crds
This commit is contained in:
parent
cd50ee00ac
commit
b4557d4729
|
@ -428,6 +428,10 @@ spec:
|
|||
properties:
|
||||
bs-version:
|
||||
type: string
|
||||
clusterName:
|
||||
description: ClusterName sets the --cluster flag for the
|
||||
cinder-csi-plugin to the provided name
|
||||
type: string
|
||||
createStorageClass:
|
||||
description: CreateStorageClass provisions a default class
|
||||
for the Cinder plugin
|
||||
|
|
|
@ -6420,6 +6420,7 @@ func autoConvert_v1alpha2_OpenstackBlockStorageConfig_To_kops_OpenstackBlockStor
|
|||
out.CreateStorageClass = in.CreateStorageClass
|
||||
out.CSIPluginImage = in.CSIPluginImage
|
||||
out.CSITopologySupport = in.CSITopologySupport
|
||||
out.ClusterName = in.ClusterName
|
||||
return nil
|
||||
}
|
||||
|
||||
|
@ -6436,6 +6437,7 @@ func autoConvert_kops_OpenstackBlockStorageConfig_To_v1alpha2_OpenstackBlockStor
|
|||
out.CreateStorageClass = in.CreateStorageClass
|
||||
out.CSIPluginImage = in.CSIPluginImage
|
||||
out.CSITopologySupport = in.CSITopologySupport
|
||||
out.ClusterName = in.ClusterName
|
||||
return nil
|
||||
}
|
||||
|
||||
|
|
|
@ -6669,6 +6669,7 @@ func autoConvert_v1alpha3_OpenstackBlockStorageConfig_To_kops_OpenstackBlockStor
|
|||
out.CreateStorageClass = in.CreateStorageClass
|
||||
out.CSIPluginImage = in.CSIPluginImage
|
||||
out.CSITopologySupport = in.CSITopologySupport
|
||||
out.ClusterName = in.ClusterName
|
||||
return nil
|
||||
}
|
||||
|
||||
|
@ -6685,6 +6686,7 @@ func autoConvert_kops_OpenstackBlockStorageConfig_To_v1alpha3_OpenstackBlockStor
|
|||
out.CreateStorageClass = in.CreateStorageClass
|
||||
out.CSIPluginImage = in.CSIPluginImage
|
||||
out.CSITopologySupport = in.CSITopologySupport
|
||||
out.ClusterName = in.ClusterName
|
||||
return nil
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue