Skip to content

Commit 3cb9f88

Browse files
authored
Merge branch 'main' into fix/ood-shell-ssh
2 parents f5eede0 + 146e951 commit 3cb9f88

File tree

1 file changed

+17
-14
lines changed

1 file changed

+17
-14
lines changed

environments/common/inventory/group_vars/all/openondemand.yml

Lines changed: 17 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -121,15 +121,15 @@ openondemand_apps_desktop_default:
121121
cluster: slurm
122122
form:
123123
- desktop
124-
- bc_queue
124+
- auto_queues
125125
- bc_num_hours
126126
- num_cores
127127
- gres
128128
- gres_count
129129
- node
130130
attributes:
131131
desktop: xfce
132-
bc_queue:
132+
auto_queues:
133133
value: "{{ openondemand_desktop_partition | default(none) }}"
134134
num_cores:
135135
label: Number of cores
@@ -157,6 +157,8 @@ openondemand_apps_desktop_default:
157157
script:
158158
job_name: "ood-desktop"
159159
native:
160+
- "--partition"
161+
- "<%= auto_queues %>"
160162
- <%= "--nodes=1" %>
161163
- <%= "--ntasks=#{num_cores}" %>
162164
<% if node != '' %>
@@ -176,7 +178,7 @@ openondemand_apps_jupyter_default:
176178
form:
177179
- modules
178180
- extra_jupyter_args
179-
- bc_queue
181+
- auto_queues
180182
- bc_num_hours
181183
- num_cores
182184
- gres
@@ -206,7 +208,7 @@ openondemand_apps_jupyter_default:
206208
help: Select a particular node or leave empty to let Slurm pick the next available
207209
value: ""
208210
extra_jupyter_args: ""
209-
bc_queue:
211+
auto_queues:
210212
value: "{{ openondemand_jupyter_partition | default(none) }}"
211213
submit: |
212214
---
@@ -219,6 +221,8 @@ openondemand_apps_jupyter_default:
219221
script:
220222
job_name: "ood-jupyter"
221223
native:
224+
- "--partition"
225+
- "<%= auto_queues %>"
222226
- <%= "--nodes=1" %>
223227
- <%= "--ntasks=#{num_cores}" %>
224228
<% if node != '' %>
@@ -234,7 +238,7 @@ openondemand_apps_rstudio_default:
234238
description: Request a RStudio server
235239
cluster: slurm
236240
attributes:
237-
bc_queue:
241+
auto_queues:
238242
value: "{{ openondemand_rstudio_partition | default(none) }}"
239243
rstudio_module:
240244
label: RStudio module
@@ -293,9 +297,8 @@ openondemand_apps_rstudio_default:
293297
min: 1
294298
step: 1
295299
form:
296-
- bc_queue
297-
- rstudio_module
298300
- auto_queues
301+
- rstudio_module
299302
- extra_modules_script
300303
- cores
301304
- ram
@@ -313,7 +316,7 @@ openondemand_apps_rstudio_default:
313316
script:
314317
native:
315318
- "--partition"
316-
- "<%= bc_queue %>"
319+
- "<%= auto_queues %>"
317320
- "--ntasks"
318321
- "1"
319322
- "--mem"
@@ -333,7 +336,7 @@ openondemand_apps_matlab_default:
333336
cluster: slurm
334337
form:
335338
- desktop
336-
- bc_queue
339+
- auto_queues
337340
- bc_num_hours
338341
- matlab_module
339342
- cores
@@ -344,7 +347,7 @@ openondemand_apps_matlab_default:
344347
desktop: xfce
345348
# bc_account: # i.e. slurm account
346349
# value: root
347-
bc_queue:
350+
auto_queues:
348351
value: "{{ openondemand_matlab_partition | default(none) }}"
349352
matlab_module:
350353
label: MATLAB module
@@ -400,7 +403,7 @@ openondemand_apps_matlab_default:
400403
job_name: "ood-matlab"
401404
native:
402405
- "--partition"
403-
- "<%= bc_queue %>"
406+
- "<%= auto_queues %>"
404407
- "--ntasks"
405408
- "1"
406409
- "--mem"
@@ -417,7 +420,7 @@ openondemand_apps_codeserver_default:
417420
description: Request a Code Server
418421
cluster: slurm
419422
form:
420-
- bc_queue
423+
- auto_queues
421424
- bc_num_hours
422425
- codeserver_module
423426
- cores
@@ -431,7 +434,7 @@ openondemand_apps_codeserver_default:
431434
widget: select
432435
options:
433436
- ["Code Server v{{ openondemand_code_server_version}}", "code-server/{{ openondemand_code_server_version }}"]
434-
bc_queue:
437+
auto_queues:
435438
value: "{{ openondemand_codeserver_partition | default(none) }}"
436439
cores:
437440
label: Number of CPU cores
@@ -468,7 +471,7 @@ openondemand_apps_codeserver_default:
468471
job_name: "ood-codeserver"
469472
native:
470473
- "--partition"
471-
- "<%= bc_queue %>"
474+
- "<%= auto_queues %>"
472475
- "--ntasks"
473476
- "1"
474477
- "--mem"

0 commit comments

Comments
 (0)