Skip to content

Commit 6846cff

Browse files
committed
update packer common vars
1 parent e5496cf commit 6846cff

File tree

4 files changed

+3
-12
lines changed

4 files changed

+3
-12
lines changed

environments/.stackhpc/ARCUS.pkrvars.hcl

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
flavor = "vm.ska.cpu.general.small"
2-
use_blockstorage_volume = true
3-
volume_size = 15 # GB
4-
image_disk_format = "qcow2"
52
networks = ["4b6b2722-ee5b-40ec-8e52-a6610e14cc51"] # portal-internal (DNS broken on ilab-60)
63
ssh_keypair_name = "slurm-app-ci"
74
ssh_private_key_file = "~/.ssh/id_rsa"

environments/.stackhpc/LEAFCLOUD.pkrvars.hcl

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
flavor = "ec1.large"
2-
use_blockstorage_volume = true
3-
volume_size = 15 # GB
42
volume_type = "unencrypted"
5-
image_disk_format = "qcow2"
63
networks = ["909e49e8-6911-473a-bf88-0495ca63853c"] # slurmapp-ci
74
ssh_keypair_name = "slurm-app-ci"
85
ssh_private_key_file = "~/.ssh/id_rsa"

environments/.stackhpc/SMS.pkrvars.hcl

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
flavor = "general.v1.small"
2-
use_blockstorage_volume = true
3-
volume_size = 15 # GB
4-
image_disk_format = "qcow2"
52
networks = ["e2b9e59f-43da-4e1c-b558-dc9da4c0d738"] # stackhpc-ipv4-geneve
63
ssh_keypair_name = "slurm-app-ci"
74
ssh_private_key_file = "~/.ssh/id_rsa"

packer/openstack.pkr.hcl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ variable "manifest_output_path" {
120120

121121
variable "use_blockstorage_volume" {
122122
type = bool
123-
default = false
123+
default = true
124124
}
125125

126126
variable "volume_type" {
@@ -130,12 +130,12 @@ variable "volume_type" {
130130

131131
variable "volume_size" {
132132
type = number
133-
default = null # When not specified use the size of the builder instance root disk
133+
default = 15
134134
}
135135

136136
variable "image_disk_format" {
137137
type = string
138-
default = null # When not specified use the image default
138+
default = qcow2
139139
}
140140

141141
variable "metadata" {

0 commit comments

Comments
 (0)