Skip to content

Commit 2a0f3b7

Browse files
committed
fpinrocky 8 pythoolsvenv version
1 parent 47bb230 commit 2a0f3b7

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

ansible/roles/slurm_tools/tasks/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
module_defaults:
2828
ansible.builtin.pip:
2929
virtualenv: /opt/slurm-tools
30-
virtualenv_command: python3 -m venv
30+
virtualenv_command: "{{ 'python3.9 -m venv' if ansible_distribution_major_version == '8' else 'python3 -m venv' }}"
3131
state: latest
3232
become: true
3333
become_user: "{{ pytools_user }}"
Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
cluster_net = "stackhpc-ipv4-geneve"
2-
cluster_subnet = "stackhpc-ipv4-geneve-subnet"
1+
cluster_networks = [
2+
{
3+
network = "stackhpc-ipv4-geneve"
4+
subnet = "stackhpc-ipv4-geneve-subnet"
5+
}
6+
]
37
control_node_flavor = "general.v1.small"
48
other_node_flavor = "general.v1.small"

0 commit comments

Comments
 (0)