Daniel's Tech Blog

Cloud Computing, Cloud Native & Kubernetes

SCVMM/WAP UR5 – VM Role Gallery Item Disk Deployment Changes

Microsoft is listening to our feedback and gives us the choice between differencing or dedicated disks for the VM role gallery item with Update Rollup 5 for VMM & WAP.

-> http://feedback.azure.com/forums/255259-azure-pack/suggestions/6036538-option-to-select-between-differencing-disk-or-dedi
-> http://support2.microsoft.com/kb/3023195/en-us

Prior to UR5 you had to use a SMA runbook like the one I have published on the TechNet gallery to convert a VM’s OS disk to a dedicated disk right after the creation process.

-> https://gallery.technet.microsoft.com/SMA-Runbook-Convert-WAP-VM-148937ee

The disk deployment settings are set on a per cloud basis. That means that you have to set a custom property on a VMM cloud to enable the specific deployment behavior. It is not a setting that you will provide within a single VM role gallery item. There for you have to split your workloads into different VMM clouds. For example one VMM cloud for production workloads with the dedicated disk deployment and another VMM cloud for test or development workloads with the differencing disk deployment. Based on that model you will have as a minimum two different hosting plans in your WAP environment.

To enable the dedicated disk support on a VMM cloud execute the following PowerShell cmdlets on the VMM server itself or on a workstation with an installed VMM console.

image

Select the VMM cloud on which you would like to enable the support for dedicated disks.

$VMMServer = vmm.domain.local
$Cloud = Get-SCCloud -VMMServer $VMMServer|Select-Object -Property Name|Out-GridView -PassThru -Title “Cloud”
$Cloud = Get-SCCloud -VMMServer $VMMServer -Name $Cloud.Name

Then you create a new custom property called DifferencingDiskOptimizationSupported.

$CustomProperty  = New-SCCustomProperty -VMMServer $VMMServer -Name “DifferencingDiskOptimizationSupported”  -Description “Deploy VM roles with dynamic or differencing disks” -AddMember @(“Cloud”)

The last step is to set the custom property value to false, if you want the dedicated disk deployment. Otherwise set the value to true to keep the default deployment behavior with differencing disks.

Set-SCCustomPropertyValue -CustomProperty $CustomProperty -InputObject $Cloud -Value “false”

image

The dedicated disk deployment option provides you with a better overall performance for the VMs and makes it easier for you to keep the base VHD image up to date.

WordPress Cookie Notice by Real Cookie Banner