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/workloads/redhat/redhat-images.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,22 +43,22 @@ az vm image list --publisher RedHat --all
43
43
44
44
VM images in Azure are organized by publisher, offer, SKU, and version. The combination of Publisher:Offer:SKU:Version is the image URN and uniquely identifies the image to be used.
45
45
46
-
For example, `RedHat:RHEL:7-LVM:7.6.2018103108` refers to a RHEL 7.6 LVM-partitioned image built on October 31, 2018.
46
+
For example, `RedHat:RHEL:8-LVM:8.1.20200318` refers to a RHEL 8.1 LVM-partitioned image built on March 18, 2020.
47
47
48
-
A sample of how to create a RHEL 7.6 VM is shown here.
48
+
A sample of how to create a RHEL 8.1 VM is shown here.
49
49
50
50
```azurecli-interactive
51
-
az vm create --name RhelVM --resource-group TestRG --image RedHat:RHEL:7-LVM:7.6.2018103108 --no-wait
51
+
az vm create --name RhelVM --resource-group TestRG --image RedHat:RHEL:8-LVM:8.1.20200318 --no-wait
52
52
```
53
53
54
54
### The "latest" moniker
55
55
56
56
The Azure REST API allows use of the moniker "latest" for the version instead of the specific version. Using "latest" provisions the latest available image for the given publisher, offer, and SKU.
57
57
58
-
For example, `RedHat:RHEL:7-LVM:latest` refers to the latest RHEL 7 family LVM-partitioned image available.
58
+
For example, `RedHat:RHEL:8-LVM:latest` refers to the latest RHEL 8 family LVM-partitioned image available.
59
59
60
60
```azurecli-interactive
61
-
az vm create --name RhelVM --resource-group TestRG --image RedHat:RHEL:7-LVM:latest --no-wait
61
+
az vm create --name RhelVM --resource-group TestRG --image RedHat:RHEL:8-LVM:latest --no-wait
62
62
```
63
63
64
64
>[!NOTE]
@@ -102,8 +102,8 @@ Details for RHEL 8 image types are below.
102
102
103
103
|Publisher | Offer | SKU value | Version | Details
|RedHat | RHEL | 8 | Concatenated values of the RHEL minor version and the date published (for example, 8.0.20191023) | These images are RHEL 8.0 LVM-partitioned images connected to standard Red Hat repositories.
106
-
|RedHat | RHEL | 8-gen2 | Concatenated values of the RHEL minor version and the date published (for example, 8.0.20191024) | These images are Hyper-V Generation 2 RHEL 8.0 LVM-partitioned images connected to standard Red Hat repositories. For more information about Generation 2 VMs in Azure, see [Support for Generation 2 VMs on Azure](https://docs.microsoft.com/azure/virtual-machines/linux/generation-2).
105
+
|RedHat | RHEL | 8 | Concatenated values of the RHEL minor version and the date published (for example, 8.0.20191023) | These images are RHEL 8 LVM-partitioned images connected to standard Red Hat repositories.
106
+
|RedHat | RHEL | 8-gen2 | Concatenated values of the RHEL minor version and the date published (for example, 8.0.20191024) | These images are Hyper-V Generation 2 RHEL 8 LVM-partitioned images connected to standard Red Hat repositories. For more information about Generation 2 VMs in Azure, see [Support for Generation 2 VMs on Azure](https://docs.microsoft.com/azure/virtual-machines/linux/generation-2).
0 commit comments