From e533fd70b58ebe3ff42619678852e6cc0341dc1e Mon Sep 17 00:00:00 2001 From: Steve Brasier Date: Tue, 2 Jan 2024 10:21:19 +0000 Subject: [PATCH 1/2] fix removal of packer bundled ansible plugin- see https://www.hashicorp.com/blog/announcing-the-removal-of-bundled-plugins-in-hashicorp-packer --- packer/openstack.pkr.hcl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packer/openstack.pkr.hcl b/packer/openstack.pkr.hcl index 3e4b570e0..803a42585 100644 --- a/packer/openstack.pkr.hcl +++ b/packer/openstack.pkr.hcl @@ -11,6 +11,10 @@ packer { version = ">= 1.0.0" source = "github.com/hashicorp/openstack" } + ansible = { + version = ">= 1.1.1" + source = "github.com/hashicorp/ansible" + } } } From f598839baab634c8a182cbeba608e4a1c39a61c1 Mon Sep 17 00:00:00 2001 From: Steve Brasier Date: Tue, 2 Jan 2024 11:12:42 +0000 Subject: [PATCH 2/2] bump CI image --- environments/.stackhpc/terraform/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/environments/.stackhpc/terraform/main.tf b/environments/.stackhpc/terraform/main.tf index 69d0ce653..658e9c170 100644 --- a/environments/.stackhpc/terraform/main.tf +++ b/environments/.stackhpc/terraform/main.tf @@ -13,7 +13,7 @@ variable "cluster_name" { variable "cluster_image" { description = "single image for all cluster nodes - a convenience for CI" type = string - default = "openhpc-231208-1207-b69af6e2" # https://github.com/stackhpc/ansible-slurm-appliance/pull/341 + default = "openhpc-240102-1025-e533fd70" # https://github.com/stackhpc/ansible-slurm-appliance/pull/346 # default = "Rocky-8-GenericCloud-Base-8.9-20231119.0.x86_64.qcow2" }