@@ -127,15 +127,13 @@ variable "volume_size" {
127127 default = {
128128 # fat image builds, GB:
129129 rocky-latest = 15
130- rocky-latest-cuda = 30
131130 openhpc = 15
132- openhpc-cuda = 30
133131 }
134132}
135133
136134variable "extra_build_volume_size" {
137135 type = number
138- default = 15 # same as default non-CUDA build
136+ default = 15
139137}
140138
141139variable "image_disk_format" {
@@ -153,10 +151,8 @@ variable "groups" {
153151 description = " Additional inventory groups (other than 'builder') to add build VM to, keyed by source name"
154152 default = {
155153 # fat image builds:
156- rocky-latest = [" update" , " ofed" ]
157- rocky-latest-cuda = [" update" , " ofed" , " cuda" ]
154+ rocky-latest = [" update" ]
158155 openhpc = [" control" , " compute" , " login" ]
159- openhpc-cuda = [" control" , " compute" , " login" ]
160156 }
161157}
162158
@@ -210,24 +206,12 @@ build {
210206 image_name = " ${ source . name } -${ var . os_version } "
211207 }
212208
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:
220210 source "source.openstack.openhpc" {
221211 name = " openhpc"
222212 image_name = " ${ source . name } -${ var . os_version } -${ local . timestamp } -${ substr (local. git_commit , 0 , 8 )} "
223213 }
224214
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-
231215 # Extended site-specific image, built on fat image:
232216 source "source.openstack.openhpc" {
233217 name = " openhpc-extra"
0 commit comments