@@ -127,15 +127,13 @@ variable "volume_size" {
127
127
default = {
128
128
# fat image builds, GB:
129
129
rocky-latest = 15
130
- rocky-latest-cuda = 30
131
130
openhpc = 15
132
- openhpc-cuda = 30
133
131
}
134
132
}
135
133
136
134
variable "extra_build_volume_size" {
137
135
type = number
138
- default = 15 # same as default non-CUDA build
136
+ default = 15
139
137
}
140
138
141
139
variable "image_disk_format" {
@@ -153,10 +151,8 @@ variable "groups" {
153
151
description = " Additional inventory groups (other than 'builder') to add build VM to, keyed by source name"
154
152
default = {
155
153
# fat image builds:
156
- rocky-latest = [" update" , " ofed" ]
157
- rocky-latest-cuda = [" update" , " ofed" , " cuda" ]
154
+ rocky-latest = [" update" ]
158
155
openhpc = [" control" , " compute" , " login" ]
159
- openhpc-cuda = [" control" , " compute" , " login" ]
160
156
}
161
157
}
162
158
@@ -210,24 +206,12 @@ build {
210
206
image_name = " ${ source . name } -${ var . os_version } "
211
207
}
212
208
213
- # latest nightly cuda image:
214
- source "source.openstack.openhpc" {
215
- name = " rocky-latest-cuda"
216
- image_name = " ${ source . name } -${ var . os_version } "
217
- }
218
-
219
- # OFED fat image:
209
+ # fat image:
220
210
source "source.openstack.openhpc" {
221
211
name = " openhpc"
222
212
image_name = " ${ source . name } -${ var . os_version } -${ local . timestamp } -${ substr (local. git_commit , 0 , 8 )} "
223
213
}
224
214
225
- # CUDA fat image:
226
- source "source.openstack.openhpc" {
227
- name = " openhpc-cuda"
228
- image_name = " ${ source . name } -${ var . os_version } -${ local . timestamp } -${ substr (local. git_commit , 0 , 8 )} "
229
- }
230
-
231
215
# Extended site-specific image, built on fat image:
232
216
source "source.openstack.openhpc" {
233
217
name = " openhpc-extra"
0 commit comments