You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/virtual-machines/deprecated-images.yml
+14-12Lines changed: 14 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -31,14 +31,15 @@ sections:
31
31
- question: I received an email that my workloads are running on images that are scheduled for deprecation. What does this mean and does deprecation impact my existing workloads?
32
32
answer: |
33
33
Before the scheduled deprecation date, you can continue to deploy new VM or scale set instances up until the deprecation date.
34
-
After the scheduled deprecation date, you will not be able to deploy new instances using the affected images. If the plan is scheduled for deprecation, all image versions within the plan will no longer be available and if the entire offer is scheduled for deprecation, all plans within the offer will no longer be available following deprecation.
35
-
- Active VM instances will not be impacted.
34
+
After the scheduled deprecation date, you won't be able to deploy new instances using the affected images. If the plan is scheduled for deprecation, all image versions within the plan will no longer be available and if the entire offer is scheduled for deprecation, all plans within the offer will no longer be available following deprecation.
35
+
- Active VM instances won't be impacted.
36
36
- New VM instances cannot be created from any of the impacted images.
37
-
- Existing virtual machine scale sets deployments cannot be scaled out if configured with any of the impacted images. When a plan or offer is being deprecated, all existing VMSS deployments pinned to any image within the plan or offer respectively cannot be scaled out.
37
+
- Existing virtual machine scale sets deployments cannot be scaled out if configured with any of the impacted images. When a plan or offer is being deprecated, all existing scale sets deployments pinned to any image within the plan or offer respectively cannot be scaled out.
38
38
39
39
40
-
What is the recommended action?
41
-
If you want your scale set to scale out after the deprecation date, you will need to identify the scale set running on the deprecated image and then migrate your workload to a supported image. (The steps to identify and migrate your workload are outlined below). If you want to remain on the image after deprecation, you can create your own custom image and migrate to it (Steps outlined below). If you already have auto updates configured for your VM/VMSS, you will only be impacted when an Offer or plan version is deprecated (No impact on image version deprecation).
40
+
**What do I need to do?**
41
+
42
+
If you want your scale set to scale out after the deprecation date, you will need to identify the scale set running on the deprecated image and then migrate your workload to a supported image. (The steps to identify and migrate your workload are outlined below). If you want to remain on the image after deprecation, you can create your own custom image and migrate to it (Steps outlined below). If you already have auto updates configured for your VM or scale set, you will only be impacted when an Offer or plan version is deprecated (No impact on image version deprecation).
42
43
43
44
44
45
@@ -50,7 +51,7 @@ sections:
50
51
51
52
If you are notified that an image is deprecated on the offer, plan (SKU) or version level:
52
53
Using Azure Resource Graph Explorer:
53
-
You can use Azure Resource Graph Explorer on the Azure portal to find the specific version for images in your subscription that your VM/VMSS is running on.
54
+
You can use Azure Resource Graph Explorer on the Azure portal to find the specific version for images in your subscription that your VM or scale set is running on.
54
55
Run the queries below in the Azure Resource Graph explorer query window and uncomment the optional filters (delete the “//” to uncomment a line) to the Offer, Plan (SKU) or version level you are looking for.
55
56
To find the details of the image versions that are being used by VMs:
To find VMSS using a deprecated Version (Replace highlighted value with version you are looking for):
93
+
To find scale set using a deprecated Version (Replace highlighted value with version you are looking for):
93
94
94
95
```
95
96
$vmsslist = Get-AzVmss
@@ -125,8 +126,8 @@ sections:
125
126
You might want to keep using an image that is scheduled for deprecation for specific reasons or you might want to migrate your workloads to another Offer/Plan/Version. Both steps are outlined below:
126
127
- You want to keep using an image that is scheduled for deprecation:
127
128
- If you want to remain on an older image version even after it has been scheduled for deprecation, follows the steps below:
128
-
- First generalize (sysprep) the powered off VM and create a custom image (Azure Compute Gallery formally called Shared Image Gallery) out of it and use that custom image for your VM/VMSS.
129
-
- Modify the VM/VMSS deployment you want to point to the custom image.
129
+
- First generalize (sysprep) the powered off VM and create a custom image (Azure Compute Gallery formally called Shared Image Gallery) out of it and use that custom image for your VM or scale set.
130
+
- Modify the VM or scale set deployment you want to point to the custom image.
130
131
- Here is how to create a custom image by capturing a VM and sharing in to Azure Compute Gallery (formerly known as Shared Image Gallery (SIG): Capture an image of a VM using the portal - Azure Virtual Machines | Microsoft Docs
131
132
132
133
Note: We recommend that you create custom images from Free Marketplace images (images that do not have Plan Info) that are scheduled for deprecation or already deprecated. For Paid Marketplace images, we suggest you create custom images from the latest version of the image. Workloads running on custom images created from a deprecated paid image will no longer work after the paid image is deprecated.
@@ -176,9 +177,10 @@ sections:
176
177
az vm image list --location "west europe" --publisher "MicrosoftWindowsServer" --offer "WindowsServer" --sku "2019-Datacenter-with-Containers" --all"
177
178
```
178
179
179
-
NOTE:
180
-
- You need to verify that your workloads are supported and will run properly on the new image before migrating your workloads to the new image.
181
-
- VMSS, in general, support image reference replacement (https://docs.microsoft.com/en-us/azure/virtual-machine-scale-sets/virtual-machine-scale-sets-upgrade-scale-set#os-updates) but VMs do not.
180
+
181
+
You need to verify that your workloads are supported and will run properly on the new image before migrating your workloads to the new image.
182
+
183
+
Scale sets, in general, support image reference replacement (https://docs.microsoft.com/en-us/azure/virtual-machine-scale-sets/virtual-machine-scale-sets-upgrade-scale-set#os-updates) but VMs do not.
0 commit comments