From a39dc0ebc5d8332beca670cb7c34a2dc3943dc70 Mon Sep 17 00:00:00 2001 From: Tom Wieczorek Date: Fri, 31 May 2024 12:20:33 +0200 Subject: [PATCH] Bump RHEL9 to 9.3.x in ostests Signed-off-by: Tom Wieczorek --- hack/ostests/README.md | 2 +- hack/ostests/modules/os/os_rhel_9.tf | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/hack/ostests/README.md b/hack/ostests/README.md index 8932596e3569..ec39252ce7ae 100644 --- a/hack/ostests/README.md +++ b/hack/ostests/README.md @@ -83,7 +83,7 @@ terraform apply * `oracle_9_1`: Oracle Linux Server 9.1 * `rhel_7`: Red Hat Enterprise Linux Server 7.9 (Maipo) * `rhel_8`: Red Hat Enterprise Linux 8.6 (Ootpa) -* `rhel_9`: Red Hat Enterprise Linux 9.0 (Plow) +* `rhel_9`: Red Hat Enterprise Linux 9.3 (Plow) * `rocky_8`: Rocky Linux 8.7 (Green Obsidian) * `rocky_9`: Rocky Linux 9.2 (Blue Onyx) * `ubuntu_2004`: Ubuntu 20.04 LTS diff --git a/hack/ostests/modules/os/os_rhel_9.tf b/hack/ostests/modules/os/os_rhel_9.tf index 4f7ba1b4f5bb..597060ca7400 100644 --- a/hack/ostests/modules/os/os_rhel_9.tf +++ b/hack/ostests/modules/os/os_rhel_9.tf @@ -4,12 +4,12 @@ data "aws_ami" "rhel_9" { count = var.os == "rhel_9" ? 1 : 0 owners = ["309956199498"] - name_regex = "^RHEL-9\\.0\\.0_HVM-\\d+-x86_64-" + name_regex = "^RHEL-9\\.3\\.\\d+_HVM-\\d+-x86_64-" most_recent = true filter { name = "name" - values = ["RHEL-9.0.0_HVM-*-x86_64-*"] + values = ["RHEL-9.3.*_HVM-*-x86_64-*"] } filter {