Skip to content

Commit

Permalink
fpinrocky 8 pythoolsvenv version
Browse files Browse the repository at this point in the history
  • Loading branch information
bertiethorpe committed Feb 4, 2025
1 parent 47bb230 commit 2a0f3b7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ansible/roles/slurm_tools/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
module_defaults:
ansible.builtin.pip:
virtualenv: /opt/slurm-tools
virtualenv_command: python3 -m venv
virtualenv_command: "{{ 'python3.9 -m venv' if ansible_distribution_major_version == '8' else 'python3 -m venv' }}"
state: latest
become: true
become_user: "{{ pytools_user }}"
8 changes: 6 additions & 2 deletions environments/.stackhpc/tofu/SMS.tfvars
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
cluster_net = "stackhpc-ipv4-geneve"
cluster_subnet = "stackhpc-ipv4-geneve-subnet"
cluster_networks = [
{
network = "stackhpc-ipv4-geneve"
subnet = "stackhpc-ipv4-geneve-subnet"
}
]
control_node_flavor = "general.v1.small"
other_node_flavor = "general.v1.small"

0 comments on commit 2a0f3b7

Please sign in to comment.