mirror of https://github.com/apache/cloudstack.git
Merge release branch 4.18 to main
* 4.18: Fix ScaleVM to consider resize volume in any type of service offering (#7359)
This commit is contained in:
commit
b7bd996300
|
|
@ -26,6 +26,7 @@ import java.util.HashMap;
|
|||
import java.util.HashSet;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Objects;
|
||||
import java.util.Optional;
|
||||
import java.util.Set;
|
||||
import java.util.UUID;
|
||||
|
|
@ -1795,12 +1796,6 @@ public class VolumeApiServiceImpl extends ManagerBase implements VolumeApiServic
|
|||
boolean volumeMigrateRequired = false;
|
||||
boolean volumeResizeRequired = false;
|
||||
|
||||
// Skip the Disk offering change on Volume if Disk Offering is the same and is linked to a custom Service Offering
|
||||
if(isNewDiskOfferingTheSameAndCustomServiceOffering(existingDiskOffering, newDiskOffering)) {
|
||||
s_logger.debug(String.format("Scaling CPU and/or Memory of VM with custom service offering. New disk offering stills the same. Skipping the Disk offering change on Volume %s.", volume.getUuid()));
|
||||
return volume;
|
||||
}
|
||||
|
||||
// VALIDATIONS
|
||||
Long[] updateNewSize = {newSize};
|
||||
Long[] updateNewMinIops = {newMinIops};
|
||||
|
|
@ -1907,19 +1902,6 @@ public class VolumeApiServiceImpl extends ManagerBase implements VolumeApiServic
|
|||
return a.equals(b);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns true if the new disk offering is the same than current offering, and the respective Service offering is a custom (constraint or unconstraint) offering.
|
||||
*/
|
||||
protected boolean isNewDiskOfferingTheSameAndCustomServiceOffering(DiskOfferingVO existingDiskOffering, DiskOfferingVO newDiskOffering) {
|
||||
if (newDiskOffering.getId() == existingDiskOffering.getId()) {
|
||||
ServiceOfferingVO serviceOffering = _serviceOfferingDao.findServiceOfferingByComputeOnlyDiskOffering(newDiskOffering.getId());
|
||||
if (serviceOffering != null && serviceOffering.isCustomized()) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
private VolumeVO resizeVolumeInternal(VolumeVO volume, DiskOfferingVO newDiskOffering, Long currentSize, Long newSize, Long newMinIops, Long newMaxIops, Integer newHypervisorSnapshotReserve, boolean shrinkOk) throws ResourceAllocationException {
|
||||
UserVmVO userVm = _userVmDao.findById(volume.getInstanceId());
|
||||
HypervisorType hypervisorType = _volsDao.getHypervisorType(volume.getId());
|
||||
|
|
@ -2031,30 +2013,8 @@ public class VolumeApiServiceImpl extends ManagerBase implements VolumeApiServic
|
|||
throw new InvalidParameterValueException("Requested disk offering has been removed.");
|
||||
}
|
||||
|
||||
if (newDiskOffering.getId() == existingDiskOffering.getId()) {
|
||||
throw new InvalidParameterValueException(String.format("Volume %s already have the new disk offering %s provided.", volume.getUuid(), existingDiskOffering.getUuid()));
|
||||
}
|
||||
|
||||
if (existingDiskOffering.getDiskSizeStrictness() != newDiskOffering.getDiskSizeStrictness()) {
|
||||
throw new InvalidParameterValueException("Disk offering size strictness does not match with new disk offering.");
|
||||
}
|
||||
|
||||
if (MatchStoragePoolTagsWithDiskOffering.valueIn(volume.getDataCenterId())) {
|
||||
if (!doesNewDiskOfferingHasTagsAsOldDiskOffering(existingDiskOffering, newDiskOffering)) {
|
||||
throw new InvalidParameterValueException(String.format("Selected disk offering %s does not have tags as in existing disk offering of volume %s", existingDiskOffering.getUuid(), volume.getUuid()));
|
||||
}
|
||||
}
|
||||
|
||||
Long instanceId = volume.getInstanceId();
|
||||
VMInstanceVO vmInstanceVO = _vmInstanceDao.findById(instanceId);
|
||||
if (volume.getVolumeType().equals(Volume.Type.ROOT)) {
|
||||
ServiceOfferingVO serviceOffering = _serviceOfferingDao.findById(vmInstanceVO.getServiceOfferingId());
|
||||
if (serviceOffering != null && serviceOffering.getDiskOfferingStrictness()) {
|
||||
throw new InvalidParameterValueException(String.format("Cannot resize ROOT volume [%s] with new disk offering since existing disk offering is strictly assigned to the ROOT volume.", volume.getName()));
|
||||
}
|
||||
}
|
||||
|
||||
_configMgr.checkDiskOfferingAccess(_accountMgr.getActiveAccountById(volume.getAccountId()), newDiskOffering, _dcDao.findById(volume.getDataCenterId()));
|
||||
|
||||
if (newDiskOffering.getDiskSize() > 0 && !newDiskOffering.isComputeOnly()) {
|
||||
newSize[0] = (Long) newDiskOffering.getDiskSize();
|
||||
} else if (newDiskOffering.isCustomized() && !newDiskOffering.isComputeOnly()) {
|
||||
|
|
@ -2084,10 +2044,41 @@ public class VolumeApiServiceImpl extends ManagerBase implements VolumeApiServic
|
|||
if (existingDiskOffering.getDiskSizeStrictness() && !(volume.getSize().equals(newSize[0]))) {
|
||||
throw new InvalidParameterValueException(String.format("Resize volume for %s is not allowed since disk offering's size is fixed", volume.getName()));
|
||||
}
|
||||
|
||||
Long instanceId = volume.getInstanceId();
|
||||
VMInstanceVO vmInstanceVO = _vmInstanceDao.findById(instanceId);
|
||||
|
||||
checkIfVolumeCanResizeWithNewDiskOffering(volume, existingDiskOffering, newDiskOffering, newSize[0], vmInstanceVO);
|
||||
checkIfVolumeIsRootAndVmIsRunning(newSize[0], volume, vmInstanceVO);
|
||||
|
||||
}
|
||||
|
||||
private void checkIfVolumeCanResizeWithNewDiskOffering(VolumeVO volume, DiskOfferingVO existingDiskOffering, DiskOfferingVO newDiskOffering, Long newSize, VMInstanceVO vmInstanceVO) {
|
||||
if (existingDiskOffering.getId() == newDiskOffering.getId() &&
|
||||
(!newDiskOffering.isCustomized() || (newDiskOffering.isCustomized() && Objects.equals(volume.getSize(), newSize << 30)))) {
|
||||
throw new InvalidParameterValueException(String.format("Volume %s is already having disk offering %s", volume, newDiskOffering.getUuid()));
|
||||
}
|
||||
|
||||
if (existingDiskOffering.getDiskSizeStrictness() != newDiskOffering.getDiskSizeStrictness()) {
|
||||
throw new InvalidParameterValueException("Disk offering size strictness does not match with new disk offering.");
|
||||
}
|
||||
|
||||
if (MatchStoragePoolTagsWithDiskOffering.valueIn(volume.getDataCenterId()) && !doesNewDiskOfferingHasTagsAsOldDiskOffering(existingDiskOffering, newDiskOffering)) {
|
||||
throw new InvalidParameterValueException(String.format("Selected disk offering %s does not have tags as in existing disk offering of volume %s", existingDiskOffering.getUuid(), volume.getUuid()));
|
||||
}
|
||||
|
||||
if (volume.getVolumeType().equals(Volume.Type.ROOT)) {
|
||||
ServiceOfferingVO serviceOffering = _serviceOfferingDao.findById(vmInstanceVO.getServiceOfferingId());
|
||||
if (serviceOffering != null && serviceOffering.getDiskOfferingStrictness()) {
|
||||
throw new InvalidParameterValueException(String.format("Cannot resize ROOT volume [%s] with new disk offering since existing disk offering is strictly assigned to the ROOT volume.", volume.getName()));
|
||||
}
|
||||
}
|
||||
|
||||
if (existingDiskOffering.getDiskSizeStrictness() && !(volume.getSize().equals(newSize))) {
|
||||
throw new InvalidParameterValueException(String.format("Resize volume for %s is not allowed since disk offering's size is fixed", volume.getName()));
|
||||
}
|
||||
}
|
||||
|
||||
private void validateVolumeResizeWithSize(VolumeVO volume, long currentSize, Long newSize, boolean shrinkOk) throws ResourceAllocationException {
|
||||
|
||||
// if the caller is looking to change the size of the volume
|
||||
|
|
|
|||
Loading…
Reference in New Issue