mirror of
https://github.com/kemko/nomad.git
synced 2026-01-06 18:35:44 +03:00
CSI: ensure all fields are mapped from structs to api response (#12124)
In PR #12108 we added missing fields to the plugin response, but we didn't include the manual serialization steps that we need until issue #10470 is resolved.
This commit is contained in:
@@ -545,11 +545,20 @@ func structsCSIInfoToApi(info *structs.CSIInfo) *api.CSIInfo {
|
||||
}
|
||||
|
||||
if info.ControllerInfo != nil {
|
||||
ci := info.ControllerInfo
|
||||
out.ControllerInfo = &api.CSIControllerInfo{
|
||||
SupportsReadOnlyAttach: info.ControllerInfo.SupportsReadOnlyAttach,
|
||||
SupportsAttachDetach: info.ControllerInfo.SupportsAttachDetach,
|
||||
SupportsListVolumes: info.ControllerInfo.SupportsListVolumes,
|
||||
SupportsListVolumesAttachedNodes: info.ControllerInfo.SupportsListVolumesAttachedNodes,
|
||||
SupportsCreateDelete: ci.SupportsCreateDelete,
|
||||
SupportsAttachDetach: ci.SupportsAttachDetach,
|
||||
SupportsListVolumes: ci.SupportsListVolumes,
|
||||
SupportsGetCapacity: ci.SupportsGetCapacity,
|
||||
SupportsCreateDeleteSnapshot: ci.SupportsCreateDeleteSnapshot,
|
||||
SupportsListSnapshots: ci.SupportsListSnapshots,
|
||||
SupportsClone: ci.SupportsClone,
|
||||
SupportsReadOnlyAttach: ci.SupportsReadOnlyAttach,
|
||||
SupportsExpand: ci.SupportsExpand,
|
||||
SupportsListVolumesAttachedNodes: ci.SupportsListVolumesAttachedNodes,
|
||||
SupportsCondition: ci.SupportsCondition,
|
||||
SupportsGet: ci.SupportsGet,
|
||||
}
|
||||
}
|
||||
|
||||
@@ -558,6 +567,9 @@ func structsCSIInfoToApi(info *structs.CSIInfo) *api.CSIInfo {
|
||||
ID: info.NodeInfo.ID,
|
||||
MaxVolumes: info.NodeInfo.MaxVolumes,
|
||||
RequiresNodeStageVolume: info.NodeInfo.RequiresNodeStageVolume,
|
||||
SupportsStats: info.NodeInfo.SupportsStats,
|
||||
SupportsExpand: info.NodeInfo.SupportsExpand,
|
||||
SupportsCondition: info.NodeInfo.SupportsCondition,
|
||||
}
|
||||
|
||||
if info.NodeInfo.AccessibleTopology != nil {
|
||||
|
||||
Reference in New Issue
Block a user