Skip to content

Commit de1f8e0

Browse files
committed
RHEL version change
1 parent 371e041 commit de1f8e0

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

modules/rhel-images-aws.adoc

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ AMI IDs correspond to native boot images for AWS. Because an AMI must exist befo
1515
1616
.Procedure
1717

18-
* Use this command to list {op-system-base} 8.4 Amazon Machine Images (AMI):
18+
* Use this command to list {op-system-base} 8.8 Amazon Machine Images (AMI):
1919
+
2020
--
2121
[source,terminal]
2222
----
2323
$ aws ec2 describe-images --owners 309956199498 \ <1>
2424
--query 'sort_by(Images, &CreationDate)[*].[CreationDate,Name,ImageId]' \ <2>
25-
--filters "Name=name,Values=RHEL-8.4*" \ <3>
25+
--filters "Name=name,Values=RHEL-8.8*" \ <3>
2626
--region us-east-1 \ <4>
2727
--output table <5>
2828
----
@@ -33,14 +33,14 @@ $ aws ec2 describe-images --owners 309956199498 \ <1>
3333
This account ID is required to display AMI IDs for images that are provided by Red Hat.
3434
====
3535
<2> The `--query` command option sets how the images are sorted with the parameters `'sort_by(Images, &CreationDate)[*].[CreationDate,Name,ImageId]'`. In this case, the images are sorted by the creation date, and the table is structured to show the creation date, the name of the image, and the AMI IDs.
36-
<3> The `--filter` command option sets which version of {op-system-base} is shown. In this example, since the filter is set by `"Name=name,Values=RHEL-8.4*"`, then {op-system-base} 8.4 AMIs are shown.
36+
<3> The `--filter` command option sets which version of {op-system-base} is shown. In this example, since the filter is set by `"Name=name,Values=RHEL-8.8*"`, then {op-system-base} 8.8 AMIs are shown.
3737
<4> The `--region` command option sets where the region where an AMI is stored.
3838
<5> The `--output` command option sets how the results are displayed.
3939
--
4040
4141
[NOTE]
4242
====
43-
When creating a {op-system-base} compute machine for AWS, ensure that the AMI is {op-system-base} 8.4 or 8.5.
43+
When creating a {op-system-base} compute machine for AWS, ensure that the AMI is {op-system-base} 8.8 or a later version of RHEL 8.
4444
====
4545

4646
.Example output
@@ -49,9 +49,9 @@ When creating a {op-system-base} compute machine for AWS, ensure that the AMI is
4949
------------------------------------------------------------------------------------------------------------
5050
| DescribeImages |
5151
+---------------------------+-----------------------------------------------------+------------------------+
52-
| 2021-03-18T14:23:11.000Z | RHEL-8.4.0_HVM_BETA-20210309-x86_64-1-Hourly2-GP2 | ami-07eeb4db5f7e5a8fb |
53-
| 2021-03-18T14:38:28.000Z | RHEL-8.4.0_HVM_BETA-20210309-arm64-1-Hourly2-GP2 | ami-069d22ec49577d4bf |
54-
| 2021-05-18T19:06:34.000Z | RHEL-8.4.0_HVM-20210504-arm64-2-Hourly2-GP2 | ami-01fc429821bf1f4b4 |
55-
| 2021-05-18T20:09:47.000Z | RHEL-8.4.0_HVM-20210504-x86_64-2-Hourly2-GP2 | ami-0b0af3577fe5e3532 |
52+
| 2021-03-18T14:23:11.000Z | RHEL-8.8.0_HVM_BETA-20210309-x86_64-1-Hourly2-GP2 | ami-07eeb4db5f7e5a8fb |
53+
| 2021-03-18T14:38:28.000Z | RHEL-8.8.0_HVM_BETA-20210309-arm64-1-Hourly2-GP2 | ami-069d22ec49577d4bf |
54+
| 2021-05-18T19:06:34.000Z | RHEL-8.8.0_HVM-20210504-arm64-2-Hourly2-GP2 | ami-01fc429821bf1f4b4 |
55+
| 2021-05-18T20:09:47.000Z | RHEL-8.8.0_HVM-20210504-x86_64-2-Hourly2-GP2 | ami-0b0af3577fe5e3532 |
5656
+---------------------------+-----------------------------------------------------+------------------------+
5757
----

0 commit comments

Comments
 (0)