File tree Expand file tree Collapse file tree 5 files changed +9
-9
lines changed
ansible/roles/cluster_infra/templates
environments/.caas/inventory/group_vars Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ output "cluster_nodes" {
32
32
}
33
33
}
34
34
],
35
- {% for partition in openhpc_slurm_partitions %}
35
+ {% for partition in openhpc_partitions %}
36
36
[
37
37
for compute in openstack_compute_instance_v2.{{ partition.name }}: {
38
38
name = compute.name
Original file line number Diff line number Diff line change @@ -282,7 +282,7 @@ resource "openstack_networking_port_v2" "control_storage" {
282
282
###
283
283
# Workers
284
284
###
285
- {% for partition in openhpc_slurm_partitions %}
285
+ {% for partition in openhpc_partitions %}
286
286
# Primary network
287
287
resource "openstack_networking_port_v2" "{{ partition.name }}" {
288
288
count = {{ partition.count }}
@@ -499,7 +499,7 @@ resource "openstack_compute_instance_v2" "control" {
499
499
}
500
500
}
501
501
502
- {% for partition in openhpc_slurm_partitions %}
502
+ {% for partition in openhpc_partitions %}
503
503
resource " openstack_compute_instance_v2" " {{ partition.name }}" {
504
504
count = {{ partition.count }}
505
505
Original file line number Diff line number Diff line change 1
1
openhpc_cluster_name : " {{ cluster_name }}"
2
2
3
- # Provision a single "standard" compute partition using the supplied
3
+ # Provision a single "standard" compute nodegroup using the supplied
4
4
# node count and flavor
5
- openhpc_slurm_partitions : " {{ hostvars[groups['openstack'][0]]['openhpc_slurm_partitions '] }}"
5
+ openhpc_nodegroups : " {{ hostvars[groups['openstack'][0]]['openhpc_nodegroups '] }}"
Original file line number Diff line number Diff line change 1
1
---
2
2
openondemand_auth : basic_pam
3
- openondemand_jupyter_partition : " {{ openhpc_slurm_partitions [0]['name'] }}"
4
- openondemand_desktop_partition : " {{ openhpc_slurm_partitions [0]['name'] }}"
3
+ openondemand_jupyter_partition : " {{ openhpc_partitions [0]['name'] }}"
4
+ openondemand_desktop_partition : " {{ openhpc_partitions [0]['name'] }}"
5
5
6
6
httpd_listen_addr_port :
7
7
- 80
Original file line number Diff line number Diff line change @@ -16,9 +16,9 @@ terraform_project_path: "{{ playbook_dir }}/terraform"
16
16
terraform_state : " {{ cluster_state | default('present') }}"
17
17
cluster_ssh_user : rocky
18
18
19
- # Provision a single "standard" compute partition using the supplied
19
+ # Provision a single "standard" compute nodegroup using the supplied
20
20
# node count and flavor
21
- openhpc_slurm_partitions :
21
+ openhpc_nodegroups :
22
22
- name : " standard"
23
23
count : " {{ compute_count }}"
24
24
flavor : " {{ compute_flavor }}"
You can’t perform that action at this time.
0 commit comments