Skip to content

Commit 7503b5f

Browse files
committed
Merge branch 'main' into rl9_v2
2 parents fa4026d + 1a456d0 commit 7503b5f

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
flavor = "en1.xsmall"
22
use_blockstorage_volume = true
3-
volume_size = 12 # GB. Compatible with SMS-lab's general.v1.tiny
3+
volume_size = 12 # GB. Compatible with SMS-lab's general.v1.tiny
4+
volume_type = "unencrypted"
45
image_disk_format = "qcow2"
56
networks = ["909e49e8-6911-473a-bf88-0495ca63853c"] # slurmapp-ci
67
source_image_name = "openhpc-230804-1754-80b8d714" # https://github.com/stackhpc/ansible-slurm-appliance/pull/298
78
fatimage_source_image_name = "Rocky-8-GenericCloud-Base-8.9-20231119.0.x86_64.qcow2"
89
ssh_keypair_name = "slurm-app-ci"
9-
ssh_private_key_file = "~/.ssh/id_ed25519"
10+
ssh_private_key_file = "~/.ssh/id_rsa"
1011
security_groups = ["default", "SSH"]
1112
floating_ip_network = "external"

environments/.stackhpc/terraform/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ variable "cluster_name" {
2222
variable "cluster_image" {
2323
description = "single image for all cluster nodes - a convenience for CI"
2424
type = string
25-
# default = "openhpc-240116-1604-b3563a08" # https://github.com/stackhpc/ansible-slurm-appliance/pull/344
25+
# default = "openhpc-240307-1635-ff0f9833" # https://github.com/stackhpc/ansible-slurm-appliance/pull/376
2626
default = "Rocky-9-GenericCloud-Base-9.3-20231113.0.x86_64.qcow2" # TODO: create packer build
2727
}
2828

packer/openstack.pkr.hcl

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,11 @@ variable "use_blockstorage_volume" {
120120
default = false
121121
}
122122

123+
variable "volume_type" {
124+
type = string
125+
default = null
126+
}
127+
123128
variable "volume_size" {
124129
type = number
125130
default = null # When not specified use the size of the builder instance root disk
@@ -139,6 +144,7 @@ source "openstack" "openhpc" {
139144
flavor = "${var.flavor}"
140145
volume_size = "${var.volume_size}"
141146
use_blockstorage_volume = "${var.use_blockstorage_volume}"
147+
volume_type = var.volume_type
142148
image_disk_format = "${var.image_disk_format}"
143149
metadata = "${var.metadata}"
144150
networks = "${var.networks}"

0 commit comments

Comments
 (0)