Skip to content

Commit 3b26948

Browse files
committed
Updated doc to reflect availability of RHEL 8 Images
1 parent 02d1c66 commit 3b26948

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/virtual-machines/workloads/redhat/redhat-images.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,22 +43,22 @@ az vm image list --publisher RedHat --all
4343

4444
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.
4545

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.
4747

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.
4949

5050
```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
5252
```
5353

5454
### The "latest" moniker
5555

5656
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.
5757

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.
5959

6060
```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
6262
```
6363

6464
>[!NOTE]

0 commit comments

Comments
 (0)