File tree Expand file tree Collapse file tree 4 files changed +13
-7
lines changed
ansible/roles/openondemand/tasks
common/inventory/group_vars/all Expand file tree Collapse file tree 4 files changed +13
-7
lines changed Original file line number Diff line number Diff line change 9
9
# if using PAM auth we need apache installed but NOT started so split the osc.ood role up:
10
10
- include_role :
11
11
name : osc.ood
12
- tasks_from : install-rpm .yml
12
+ tasks_from : install-package .yml
13
13
vars_from : Rocky.yml
14
14
public : yes # Expose the vars from this role to the rest of the play
15
15
# can't set vars: from a dict hence the workaround above
Original file line number Diff line number Diff line change @@ -14,6 +14,12 @@ variable "create_nodes" {
14
14
default = true
15
15
}
16
16
17
+ variable "cluster_image" {
18
+ description = " single image for all cluster nodes - a convenience for CI"
19
+ type = string
20
+ default = " openhpc-221117-1324.qcow2" # https://github.com/stackhpc/slurm_image_builder/pull/9
21
+ }
22
+
17
23
module "cluster" {
18
24
source = " ../../skeleton/{{cookiecutter.environment}}/terraform/"
19
25
@@ -24,22 +30,22 @@ module "cluster" {
24
30
key_pair = " slurm-app-ci"
25
31
control_node = {
26
32
flavor: " vm.alaska.cpu.general.small"
27
- image: " openhpc-221116-1159.qcow2 "
33
+ image: var.cluster_image
28
34
}
29
35
login_nodes = {
30
36
login- 0 : {
31
37
flavor: " vm.alaska.cpu.general.small"
32
- image: " openhpc-221027-1557.qcow2 "
38
+ image: var.cluster_image
33
39
}
34
40
}
35
41
compute_types = {
36
42
small: {
37
43
flavor: " vm.alaska.cpu.general.small"
38
- image: " openhpc-221116-1159.qcow2 "
44
+ image: var.cluster_image
39
45
}
40
46
extra: {
41
47
flavor: " vm.alaska.cpu.general.small"
42
- image: " openhpc-221116-1159.qcow2 "
48
+ image: var.cluster_image
43
49
}
44
50
}
45
51
compute_nodes = {
Original file line number Diff line number Diff line change 7
7
8
8
# openondemand_servername: '' # Must be defined when using openondemand
9
9
10
- ondemand_package : ondemand-2.0.28
10
+ ondemand_package : ondemand-2.0.29
11
11
12
12
openondemand_dashboard_links : # TODO: should really only be deployed if grafana is deployed and proxying configured
13
13
- name : Grafana
Original file line number Diff line number Diff line change 22
22
# No versions available
23
23
- src : https://github.com/OSC/ood-ansible.git
24
24
name : osc.ood
25
- version : v2.0.5
25
+ version : v2.0.8
26
26
27
27
collections :
28
28
- name : containers.podman
You can’t perform that action at this time.
0 commit comments