We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47bb230 commit 2a0f3b7Copy full SHA for 2a0f3b7
ansible/roles/slurm_tools/tasks/main.yml
@@ -27,7 +27,7 @@
27
module_defaults:
28
ansible.builtin.pip:
29
virtualenv: /opt/slurm-tools
30
- virtualenv_command: python3 -m venv
+ virtualenv_command: "{{ 'python3.9 -m venv' if ansible_distribution_major_version == '8' else 'python3 -m venv' }}"
31
state: latest
32
become: true
33
become_user: "{{ pytools_user }}"
environments/.stackhpc/tofu/SMS.tfvars
@@ -1,4 +1,8 @@
1
-cluster_net = "stackhpc-ipv4-geneve"
2
-cluster_subnet = "stackhpc-ipv4-geneve-subnet"
+cluster_networks = [
+ {
3
+ network = "stackhpc-ipv4-geneve"
4
+ subnet = "stackhpc-ipv4-geneve-subnet"
5
+ }
6
+]
7
control_node_flavor = "general.v1.small"
8
other_node_flavor = "general.v1.small"
0 commit comments