File tree Expand file tree Collapse file tree 3 files changed +10
-3
lines changed
Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 11flavor = " en1.xsmall"
22use_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"
45image_disk_format = " qcow2"
56networks = [" 909e49e8-6911-473a-bf88-0495ca63853c" ] # slurmapp-ci
67source_image_name = " openhpc-230804-1754-80b8d714" # https://github.com/stackhpc/ansible-slurm-appliance/pull/298
78fatimage_source_image_name = " Rocky-8-GenericCloud-Base-8.9-20231119.0.x86_64.qcow2"
89ssh_keypair_name = " slurm-app-ci"
9- ssh_private_key_file = " ~/.ssh/id_ed25519 "
10+ ssh_private_key_file = " ~/.ssh/id_rsa "
1011security_groups = [" default" , " SSH" ]
1112floating_ip_network = " external"
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ variable "cluster_name" {
2222variable "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-8-GenericCloud-Base-8.9-20231119.0.x86_64.qcow2"
2727}
2828
Original file line number Diff line number Diff 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+
123128variable "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 } "
You can’t perform that action at this time.
0 commit comments