From 1fc5e2ad18181baa10cb5bde8be8f837e08bd941 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Hozza?= Date: Thu, 29 May 2025 11:33:31 +0200 Subject: [PATCH] Packer: use latest RHEL-9 GA Cloud Access images for workers MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update the RHEL-9 Cloud Access images used for our workers from 9.0 to 9.6, which is the latest GA. We do upgrade all packages in our Ansible playbook, but that is just waste of resources if we can use the latest GA images. Signed-off-by: Tomáš Hozza --- templates/packer/worker.pkr.hcl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/templates/packer/worker.pkr.hcl b/templates/packer/worker.pkr.hcl index 946a59393..c20071921 100644 --- a/templates/packer/worker.pkr.hcl +++ b/templates/packer/worker.pkr.hcl @@ -23,8 +23,8 @@ build { source "amazon-ebs.image_builder" { name = "rhel-9-x86_64" - # Use a static RHEL 9.0 Cloud Access Image. - source_ami = "ami-0f7c7d22de9e097ea" + # RHEL-9.6.0_HVM_GA-20250423-x86_64-0-Access2-GP3 + source_ami = "ami-01a52a1073599b7c8" ssh_username = "ec2-user" instance_type = "c6a.large" aws_polling { @@ -57,8 +57,8 @@ build { source "amazon-ebs.image_builder" { name = "rhel-9-aarch64" - # Use a static RHEL 9.0 Cloud Access Image. - source_ami = "ami-019ece25c0f135889" + # RHEL-9.6.0_HVM_GA-20250423-arm64-0-Access2-GP3 + source_ami = "ami-089b86d2f4d27cd98" ssh_username = "ec2-user" instance_type = "c6g.large" aws_polling {