File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
ansible/roles/compute_init/files Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 6
6
vars :
7
7
os_metadata : " {{ lookup('url', 'http://169.254.169.254/openstack/latest/meta_data.json') | from_json }}"
8
8
server_node_ip : " {{ os_metadata.meta.k3s_server }}"
9
- enable_slurmd : " {{ os_metadata.meta.enable_slurmd | default(false) | bool }}"
9
+ enable_compute : " {{ os_metadata.meta.enable_compute | default(false) | bool }}"
10
10
enable_resolv_conf : " {{ os_metadata.meta.enable_senable_resolv_conf | default(false) | bool }}"
11
11
enable_etc_hosts : " {{ os_metadata.meta.enable_etc_hosts | default(false) | bool }}"
12
12
19
19
- name : Report skipping initialization if not compute node
20
20
# meta: end_play produces no output
21
21
debug :
22
- msg : " Skipping compute initialization: Metadata enable_slurmd is not true"
22
+ msg : " Skipping compute initialization: Metadata enable_compute is not true"
23
23
24
24
- meta : end_play
25
- when : not enable_slurmd
25
+ when : not enable_compute
26
26
27
27
- name : Ensure the mount directory exists
28
28
file :
103
103
# TODO: - name: Configure EESSI
104
104
105
105
# TODO: - name: Configure openhpc
106
- # NB: don't need conditional block on enable_slurmd as have already exited
106
+ # NB: don't need conditional block on enable_compute as have already exited
107
107
# if not the case
108
108
- name : Write Munge key
109
109
copy :
You can’t perform that action at this time.
0 commit comments