mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-06-30 02:31:10 +00:00
Allow to set disk speed and set / update other attributes of existing disks when cloning a VM Signed-off-by: Pavel Boldyrev <627562+bpg@users.noreply.github.com>
622 lines
16 KiB
Go
622 lines
16 KiB
Go
/*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
package disk
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"regexp"
|
|
"slices"
|
|
"strings"
|
|
"unicode"
|
|
|
|
"github.com/hashicorp/terraform-plugin-log/tflog"
|
|
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
|
|
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
|
|
|
|
"github.com/bpg/terraform-provider-proxmox/proxmox"
|
|
"github.com/bpg/terraform-provider-proxmox/proxmox/helpers/ptr"
|
|
"github.com/bpg/terraform-provider-proxmox/proxmox/nodes/vms"
|
|
"github.com/bpg/terraform-provider-proxmox/proxmox/ssh"
|
|
"github.com/bpg/terraform-provider-proxmox/proxmox/types"
|
|
"github.com/bpg/terraform-provider-proxmox/proxmoxtf/structure"
|
|
"github.com/bpg/terraform-provider-proxmox/utils"
|
|
)
|
|
|
|
// GetInfo returns the disk information for a VM.
|
|
// Deprecated: use vms.MapCustomStorageDevices from proxmox/nodes/vms instead.
|
|
func GetInfo(resp *vms.GetResponseData, d *schema.ResourceData) vms.CustomStorageDevices {
|
|
storageDevices := resp.StorageDevices
|
|
|
|
currentDisk := d.Get(MkDisk)
|
|
|
|
diskMap := utils.MapResourcesByAttribute(currentDisk.([]interface{}), mkDiskInterface)
|
|
|
|
for k, v := range storageDevices {
|
|
if v != nil && diskMap[k] != nil {
|
|
if d, ok := diskMap[k].(map[string]interface{}); ok {
|
|
if fileID, ok := d[mkDiskFileID].(string); ok && fileID != "" {
|
|
v.FileID = &fileID
|
|
}
|
|
}
|
|
|
|
if v.Size == nil {
|
|
v.Size = new(types.DiskSize)
|
|
}
|
|
}
|
|
}
|
|
|
|
return storageDevices
|
|
}
|
|
|
|
// UpdateClone updates disks in a cloned VM.
|
|
func UpdateClone(
|
|
ctx context.Context,
|
|
planDisks vms.CustomStorageDevices,
|
|
allDiskInfo vms.CustomStorageDevices,
|
|
vmAPI *vms.Client,
|
|
) error {
|
|
for diskInterface, planDisk := range planDisks {
|
|
currentDisk := allDiskInfo[diskInterface]
|
|
|
|
if currentDisk == nil {
|
|
diskUpdateBody := &vms.UpdateRequestBody{}
|
|
diskUpdateBody.AddCustomStorageDevice(diskInterface, *planDisk)
|
|
|
|
if err := vmAPI.UpdateVM(ctx, diskUpdateBody); err != nil {
|
|
return fmt.Errorf("disk update fails: %w", err)
|
|
}
|
|
|
|
continue
|
|
}
|
|
|
|
if planDisk.Size.InMegabytes() < currentDisk.Size.InMegabytes() {
|
|
return fmt.Errorf("disk resize failure: requested size (%s) is lower than current size (%s)",
|
|
planDisk.Size.String(),
|
|
currentDisk.Size.String(),
|
|
)
|
|
}
|
|
|
|
moveDisk := false
|
|
|
|
if *planDisk.DatastoreID != "" {
|
|
fileIDParts := strings.Split(currentDisk.FileVolume, ":")
|
|
moveDisk = *planDisk.DatastoreID != fileIDParts[0]
|
|
}
|
|
|
|
if moveDisk {
|
|
deleteOriginalDisk := types.CustomBool(true)
|
|
|
|
diskMoveBody := &vms.MoveDiskRequestBody{
|
|
DeleteOriginalDisk: &deleteOriginalDisk,
|
|
Disk: diskInterface,
|
|
TargetStorage: *planDisk.DatastoreID,
|
|
}
|
|
|
|
err := vmAPI.MoveVMDisk(ctx, diskMoveBody)
|
|
if err != nil {
|
|
return fmt.Errorf("disk move fails: %w", err)
|
|
}
|
|
}
|
|
|
|
if planDisk.Size.InMegabytes() > currentDisk.Size.InMegabytes() {
|
|
diskResizeBody := &vms.ResizeDiskRequestBody{
|
|
Disk: diskInterface,
|
|
Size: *planDisk.Size,
|
|
}
|
|
|
|
err := vmAPI.ResizeVMDisk(ctx, diskResizeBody)
|
|
if err != nil {
|
|
return fmt.Errorf("disk resize fails: %w", err)
|
|
}
|
|
}
|
|
|
|
// update other disk parameters
|
|
if currentDisk.MergeWith(*planDisk) {
|
|
diskUpdateBody := &vms.UpdateRequestBody{}
|
|
diskUpdateBody.AddCustomStorageDevice(diskInterface, *currentDisk)
|
|
|
|
if err := vmAPI.UpdateVM(ctx, diskUpdateBody); err != nil {
|
|
return fmt.Errorf("disk update fails: %w", err)
|
|
}
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// DigitPrefix returns the prefix of a string that is not a digit.
|
|
func DigitPrefix(s string) string {
|
|
for i, r := range s {
|
|
if unicode.IsDigit(r) {
|
|
return s[:i]
|
|
}
|
|
}
|
|
|
|
return s
|
|
}
|
|
|
|
// GetDiskDeviceObjects returns a map of disk devices for a VM.
|
|
func GetDiskDeviceObjects(
|
|
d *schema.ResourceData,
|
|
resource *schema.Resource,
|
|
disks []interface{},
|
|
) (vms.CustomStorageDevices, error) {
|
|
var diskDevices []interface{}
|
|
|
|
if disks != nil {
|
|
diskDevices = disks
|
|
} else {
|
|
diskDevices = d.Get(MkDisk).([]interface{})
|
|
}
|
|
|
|
diskDeviceObjects := vms.CustomStorageDevices{}
|
|
|
|
for _, diskEntry := range diskDevices {
|
|
diskDevice := &vms.CustomStorageDevice{}
|
|
|
|
block := diskEntry.(map[string]interface{})
|
|
datastoreID, _ := block[mkDiskDatastoreID].(string)
|
|
pathInDatastore := ""
|
|
|
|
if untyped, hasPathInDatastore := block[mkDiskPathInDatastore]; hasPathInDatastore {
|
|
pathInDatastore = untyped.(string)
|
|
}
|
|
|
|
aio := block[mkDiskAIO].(string)
|
|
backup := types.CustomBool(block[mkDiskBackup].(bool))
|
|
cache := block[mkDiskCache].(string)
|
|
discard := block[mkDiskDiscard].(string)
|
|
diskInterface, _ := block[mkDiskInterface].(string)
|
|
fileFormat, _ := block[mkDiskFileFormat].(string)
|
|
fileID, _ := block[mkDiskFileID].(string)
|
|
ioThread := types.CustomBool(block[mkDiskIOThread].(bool))
|
|
replicate := types.CustomBool(block[mkDiskReplicate].(bool))
|
|
serial := block[mkDiskSerial].(string)
|
|
size, _ := block[mkDiskSize].(int)
|
|
ssd := types.CustomBool(block[mkDiskSSD].(bool))
|
|
|
|
speedBlock, err := structure.GetSchemaBlock(
|
|
resource,
|
|
d,
|
|
[]string{MkDisk, mkDiskSpeed},
|
|
0,
|
|
false,
|
|
)
|
|
if err != nil {
|
|
return diskDeviceObjects, fmt.Errorf("error getting disk speed block: %w", err)
|
|
}
|
|
|
|
if fileFormat == "" {
|
|
fileFormat = dvDiskFileFormat
|
|
}
|
|
|
|
if pathInDatastore != "" {
|
|
if datastoreID != "" {
|
|
diskDevice.FileVolume = fmt.Sprintf("%s:%s", datastoreID, pathInDatastore)
|
|
} else {
|
|
// FileVolume is absolute path in the host filesystem
|
|
diskDevice.FileVolume = pathInDatastore
|
|
}
|
|
} else {
|
|
diskDevice.FileVolume = fmt.Sprintf("%s:%d", datastoreID, size)
|
|
}
|
|
|
|
diskDevice.AIO = &aio
|
|
diskDevice.Backup = &backup
|
|
diskDevice.Cache = &cache
|
|
diskDevice.DatastoreID = &datastoreID
|
|
diskDevice.Discard = &discard
|
|
diskDevice.FileID = &fileID
|
|
diskDevice.Format = &fileFormat
|
|
diskDevice.Replicate = &replicate
|
|
diskDevice.Serial = &serial
|
|
diskDevice.Size = types.DiskSizeFromGigabytes(int64(size))
|
|
|
|
if !strings.HasPrefix(diskInterface, "virtio") {
|
|
diskDevice.SSD = &ssd
|
|
}
|
|
|
|
if !strings.HasPrefix(diskInterface, "sata") && !strings.HasPrefix(diskInterface, "ide") {
|
|
diskDevice.IOThread = &ioThread
|
|
}
|
|
|
|
if len(speedBlock) > 0 {
|
|
iopsRead := speedBlock[mkDiskIopsRead].(int)
|
|
iopsReadBurstable := speedBlock[mkDiskIopsReadBurstable].(int)
|
|
iopsWrite := speedBlock[mkDiskIopsWrite].(int)
|
|
iopsWriteBurstable := speedBlock[mkDiskIopsWriteBurstable].(int)
|
|
speedLimitRead := speedBlock[mkDiskSpeedRead].(int)
|
|
speedLimitReadBurstable := speedBlock[mkDiskSpeedReadBurstable].(int)
|
|
speedLimitWrite := speedBlock[mkDiskSpeedWrite].(int)
|
|
speedLimitWriteBurstable := speedBlock[mkDiskSpeedWriteBurstable].(int)
|
|
|
|
if iopsRead > 0 {
|
|
diskDevice.IopsRead = &iopsRead
|
|
}
|
|
|
|
if iopsReadBurstable > 0 {
|
|
diskDevice.MaxIopsRead = &iopsReadBurstable
|
|
}
|
|
|
|
if iopsWrite > 0 {
|
|
diskDevice.IopsWrite = &iopsWrite
|
|
}
|
|
|
|
if iopsWriteBurstable > 0 {
|
|
diskDevice.MaxIopsWrite = &iopsWriteBurstable
|
|
}
|
|
|
|
if speedLimitRead > 0 {
|
|
diskDevice.MaxReadSpeedMbps = &speedLimitRead
|
|
}
|
|
|
|
if speedLimitReadBurstable > 0 {
|
|
diskDevice.BurstableReadSpeedMbps = &speedLimitReadBurstable
|
|
}
|
|
|
|
if speedLimitWrite > 0 {
|
|
diskDevice.MaxWriteSpeedMbps = &speedLimitWrite
|
|
}
|
|
|
|
if speedLimitWriteBurstable > 0 {
|
|
diskDevice.BurstableWriteSpeedMbps = &speedLimitWriteBurstable
|
|
}
|
|
}
|
|
|
|
if !slices.Contains(vms.StorageInterfaces, DigitPrefix(diskInterface)) {
|
|
errorMsg := fmt.Sprintf(
|
|
"Defined disk interface not supported. Interface was %s, but only %v are supported",
|
|
diskInterface, vms.StorageInterfaces,
|
|
)
|
|
|
|
return diskDeviceObjects, errors.New(errorMsg)
|
|
}
|
|
|
|
diskDeviceObjects[diskInterface] = diskDevice
|
|
}
|
|
|
|
return diskDeviceObjects, nil
|
|
}
|
|
|
|
// CreateCustomDisks creates custom disks for a VM.
|
|
func CreateCustomDisks(
|
|
ctx context.Context,
|
|
client proxmox.Client,
|
|
nodeName string,
|
|
vmID int,
|
|
storageDevices vms.CustomStorageDevices,
|
|
) diag.Diagnostics {
|
|
for iface, disk := range storageDevices {
|
|
if disk != nil && disk.FileID != nil && *disk.FileID != "" {
|
|
// only custom disks with defined file ID
|
|
err := createCustomDisk(ctx, client, nodeName, vmID, iface, *disk)
|
|
if err != nil {
|
|
return diag.FromErr(err)
|
|
}
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func createCustomDisk(
|
|
ctx context.Context,
|
|
client proxmox.Client,
|
|
nodeName string,
|
|
vmID int,
|
|
iface string,
|
|
disk vms.CustomStorageDevice,
|
|
) error {
|
|
fileFormat := dvDiskFileFormat
|
|
if disk.Format != nil && *disk.Format != "" {
|
|
fileFormat = *disk.Format
|
|
}
|
|
|
|
//nolint:lll
|
|
commands := []string{
|
|
`set -e`,
|
|
ssh.TrySudo,
|
|
fmt.Sprintf(`file_id="%s"`, *disk.FileID),
|
|
fmt.Sprintf(`file_format="%s"`, fileFormat),
|
|
fmt.Sprintf(`datastore_id_target="%s"`, *disk.DatastoreID),
|
|
fmt.Sprintf(`vm_id="%d"`, vmID),
|
|
fmt.Sprintf(`disk_options="%s"`, disk.EncodeOptions()),
|
|
fmt.Sprintf(`disk_interface="%s"`, iface),
|
|
`source_image=$(try_sudo "pvesm path $file_id")`,
|
|
`imported_disk="$(try_sudo "qm importdisk $vm_id $source_image $datastore_id_target -format $file_format" | grep "unused0" | cut -d ":" -f 3 | cut -d "'" -f 1)"`,
|
|
`disk_id="${datastore_id_target}:$imported_disk,${disk_options}"`,
|
|
`try_sudo "qm set $vm_id -${disk_interface} $disk_id"`,
|
|
}
|
|
|
|
out, err := client.SSH().ExecuteNodeCommands(ctx, nodeName, commands)
|
|
if err != nil {
|
|
if matches, e := regexp.Match(`pvesm: .* not found`, out); e == nil && matches {
|
|
err = ssh.NewErrUserHasNoPermission(client.SSH().Username())
|
|
}
|
|
|
|
return fmt.Errorf("creating custom disk: %w", err)
|
|
}
|
|
|
|
tflog.Debug(ctx, "vmCreateCustomDisks: commands", map[string]interface{}{
|
|
"output": string(out),
|
|
})
|
|
|
|
err = client.Node(nodeName).VM(vmID).ResizeVMDisk(ctx, &vms.ResizeDiskRequestBody{
|
|
Disk: iface,
|
|
Size: *disk.Size,
|
|
})
|
|
if err != nil {
|
|
return fmt.Errorf("resizing disk: %w", err)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// Read reads the disk configuration of a VM.
|
|
func Read(
|
|
ctx context.Context,
|
|
d *schema.ResourceData,
|
|
diskObjects vms.CustomStorageDevices,
|
|
vmID int,
|
|
client proxmox.Client,
|
|
nodeName string,
|
|
isClone bool,
|
|
) diag.Diagnostics {
|
|
currentDiskList := d.Get(MkDisk).([]interface{})
|
|
diskMap := map[string]interface{}{}
|
|
|
|
var diags diag.Diagnostics
|
|
|
|
for di, dd := range diskObjects {
|
|
if dd == nil || dd.FileVolume == "none" {
|
|
continue
|
|
}
|
|
|
|
if dd.IsCloudInitDrive(vmID) {
|
|
continue
|
|
}
|
|
|
|
disk := map[string]interface{}{}
|
|
|
|
datastoreID, pathInDatastore, hasDatastoreID := strings.Cut(dd.FileVolume, ":")
|
|
if !hasDatastoreID {
|
|
// when no ':' separator is found, 'Cut' places the whole string to 'datastoreID',
|
|
// we want it in 'pathInDatastore' (it is absolute filesystem path)
|
|
pathInDatastore = datastoreID
|
|
datastoreID = ""
|
|
}
|
|
|
|
disk[mkDiskDatastoreID] = datastoreID
|
|
disk[mkDiskPathInDatastore] = pathInDatastore
|
|
|
|
if dd.Format == nil {
|
|
disk[mkDiskFileFormat] = dvDiskFileFormat
|
|
|
|
if datastoreID != "" {
|
|
// disk format may not be returned by config API if it is default for the storage, and that may be different
|
|
// from the default qcow2, so we need to read it from the storage API to make sure we have the correct value
|
|
volume, e := client.Node(nodeName).Storage(datastoreID).GetDatastoreFile(ctx, dd.FileVolume)
|
|
if e != nil {
|
|
diags = append(diags, diag.FromErr(e)...)
|
|
continue
|
|
}
|
|
|
|
disk[mkDiskFileFormat] = volume.FileFormat
|
|
}
|
|
} else {
|
|
disk[mkDiskFileFormat] = dd.Format
|
|
}
|
|
|
|
if dd.FileID != nil {
|
|
disk[mkDiskFileID] = dd.FileID
|
|
}
|
|
|
|
disk[mkDiskInterface] = di
|
|
disk[mkDiskSize] = dd.Size.InGigabytes()
|
|
|
|
if dd.AIO != nil {
|
|
disk[mkDiskAIO] = *dd.AIO
|
|
} else {
|
|
disk[mkDiskAIO] = dvDiskAIO
|
|
}
|
|
|
|
if dd.Backup != nil {
|
|
disk[mkDiskBackup] = *dd.Backup
|
|
} else {
|
|
disk[mkDiskBackup] = true
|
|
}
|
|
|
|
if dd.IOThread != nil {
|
|
disk[mkDiskIOThread] = *dd.IOThread
|
|
} else {
|
|
disk[mkDiskIOThread] = false
|
|
}
|
|
|
|
if dd.Replicate != nil {
|
|
disk[mkDiskReplicate] = *dd.Replicate
|
|
} else {
|
|
disk[mkDiskReplicate] = true
|
|
}
|
|
|
|
if dd.Serial != nil {
|
|
disk[mkDiskSerial] = *dd.Serial
|
|
} else {
|
|
disk[mkDiskSerial] = ""
|
|
}
|
|
|
|
if dd.SSD != nil {
|
|
disk[mkDiskSSD] = *dd.SSD
|
|
} else {
|
|
disk[mkDiskSSD] = false
|
|
}
|
|
|
|
if dd.Discard != nil {
|
|
disk[mkDiskDiscard] = *dd.Discard
|
|
} else {
|
|
disk[mkDiskDiscard] = dvDiskDiscard
|
|
}
|
|
|
|
if dd.Cache != nil {
|
|
disk[mkDiskCache] = *dd.Cache
|
|
} else {
|
|
disk[mkDiskCache] = dvDiskCache
|
|
}
|
|
|
|
if dd.IopsRead != nil ||
|
|
dd.MaxIopsRead != nil ||
|
|
dd.IopsWrite != nil ||
|
|
dd.MaxIopsWrite != nil ||
|
|
dd.BurstableReadSpeedMbps != nil ||
|
|
dd.BurstableWriteSpeedMbps != nil ||
|
|
dd.MaxReadSpeedMbps != nil ||
|
|
dd.MaxWriteSpeedMbps != nil {
|
|
speed := map[string]interface{}{}
|
|
|
|
if dd.IopsRead != nil {
|
|
speed[mkDiskIopsRead] = *dd.IopsRead
|
|
} else {
|
|
speed[mkDiskIopsRead] = 0
|
|
}
|
|
|
|
if dd.MaxIopsRead != nil {
|
|
speed[mkDiskIopsReadBurstable] = *dd.MaxIopsRead
|
|
} else {
|
|
speed[mkDiskIopsReadBurstable] = 0
|
|
}
|
|
|
|
if dd.IopsWrite != nil {
|
|
speed[mkDiskIopsWrite] = *dd.IopsWrite
|
|
} else {
|
|
speed[mkDiskIopsWrite] = 0
|
|
}
|
|
|
|
if dd.MaxIopsWrite != nil {
|
|
speed[mkDiskIopsWriteBurstable] = *dd.MaxIopsWrite
|
|
} else {
|
|
speed[mkDiskIopsWriteBurstable] = 0
|
|
}
|
|
|
|
if dd.MaxReadSpeedMbps != nil {
|
|
speed[mkDiskSpeedRead] = *dd.MaxReadSpeedMbps
|
|
} else {
|
|
speed[mkDiskSpeedRead] = 0
|
|
}
|
|
|
|
if dd.BurstableReadSpeedMbps != nil {
|
|
speed[mkDiskSpeedReadBurstable] = *dd.BurstableReadSpeedMbps
|
|
} else {
|
|
speed[mkDiskSpeedReadBurstable] = 0
|
|
}
|
|
|
|
if dd.MaxWriteSpeedMbps != nil {
|
|
speed[mkDiskSpeedWrite] = *dd.MaxWriteSpeedMbps
|
|
} else {
|
|
speed[mkDiskSpeedWrite] = 0
|
|
}
|
|
|
|
if dd.BurstableWriteSpeedMbps != nil {
|
|
speed[mkDiskSpeedWriteBurstable] = *dd.BurstableWriteSpeedMbps
|
|
} else {
|
|
speed[mkDiskSpeedWriteBurstable] = 0
|
|
}
|
|
|
|
disk[mkDiskSpeed] = []interface{}{speed}
|
|
} else {
|
|
disk[mkDiskSpeed] = []interface{}{}
|
|
}
|
|
|
|
diskMap[di] = disk
|
|
}
|
|
|
|
if !isClone || len(currentDiskList) > 0 {
|
|
var diskList []interface{}
|
|
|
|
if len(currentDiskList) > 0 {
|
|
interfaces := utils.ListResourcesAttributeValue(currentDiskList, mkDiskInterface)
|
|
diskList = utils.OrderedListFromMapByKeyValues(diskMap, interfaces)
|
|
} else {
|
|
diskList = utils.OrderedListFromMap(diskMap)
|
|
}
|
|
|
|
err := d.Set(MkDisk, diskList)
|
|
diags = append(diags, diag.FromErr(err)...)
|
|
}
|
|
|
|
return diags
|
|
}
|
|
|
|
// Update updates the disk configuration of a VM.
|
|
func Update(
|
|
ctx context.Context,
|
|
client proxmox.Client,
|
|
nodeName string,
|
|
vmID int,
|
|
d *schema.ResourceData,
|
|
planDisks vms.CustomStorageDevices,
|
|
currentDisks vms.CustomStorageDevices,
|
|
updateBody *vms.UpdateRequestBody,
|
|
) (bool, error) {
|
|
rebootRequired := false
|
|
|
|
if d.HasChange(MkDisk) {
|
|
for iface, disk := range planDisks {
|
|
var tmp *vms.CustomStorageDevice
|
|
|
|
switch {
|
|
case currentDisks[iface] == nil && disk != nil:
|
|
if disk.FileID != nil && *disk.FileID != "" {
|
|
// only disks with defined file ID are custom image disks that need to be created via import.
|
|
err := createCustomDisk(ctx, client, nodeName, vmID, iface, *disk)
|
|
if err != nil {
|
|
return false, fmt.Errorf("creating custom disk: %w", err)
|
|
}
|
|
} else {
|
|
// otherwise this is a blank disk that can be added directly via update API
|
|
tmp = disk
|
|
}
|
|
case currentDisks[iface] != nil:
|
|
// update existing disk
|
|
tmp = currentDisks[iface]
|
|
default:
|
|
// something went wrong
|
|
return false, fmt.Errorf("missing device %s", iface)
|
|
}
|
|
|
|
if tmp == nil || disk == nil {
|
|
continue
|
|
}
|
|
|
|
if !ptr.Eq(tmp.AIO, disk.AIO) {
|
|
rebootRequired = true
|
|
tmp.AIO = disk.AIO
|
|
}
|
|
|
|
tmp.Backup = disk.Backup
|
|
tmp.BurstableReadSpeedMbps = disk.BurstableReadSpeedMbps
|
|
tmp.BurstableWriteSpeedMbps = disk.BurstableWriteSpeedMbps
|
|
tmp.Cache = disk.Cache
|
|
tmp.Discard = disk.Discard
|
|
tmp.IOThread = disk.IOThread
|
|
tmp.IopsRead = disk.IopsRead
|
|
tmp.IopsWrite = disk.IopsWrite
|
|
tmp.MaxIopsRead = disk.MaxIopsRead
|
|
tmp.MaxIopsWrite = disk.MaxIopsWrite
|
|
tmp.MaxReadSpeedMbps = disk.MaxReadSpeedMbps
|
|
tmp.MaxWriteSpeedMbps = disk.MaxWriteSpeedMbps
|
|
tmp.Replicate = disk.Replicate
|
|
tmp.Serial = disk.Serial
|
|
tmp.SSD = disk.SSD
|
|
|
|
updateBody.AddCustomStorageDevice(iface, *tmp)
|
|
}
|
|
}
|
|
|
|
return rebootRequired, nil
|
|
}
|