Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions community/examples/hpc-build-slurm-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,11 @@ deployment_groups:
content: |
#!/bin/bash
set -e -o pipefail
# Slurm build on Rocky8 will upgrade to python38 as part of build
# This is not compatible with ansible-local runner
dnf install -y python38
alternatives --set python3 /usr/bin/python3.8
# Slurm build on Rocky8 will upgrade to python3.12 as part of build
dnf install -y python3.12 python3.12-pip
alternatives --set python3 /usr/bin/python3.12
python3 -m pip install pip --upgrade
python3 -m pip install ansible==6.7.0
python3 -m pip install ansible==8.7.0
python3 -m pip install selinux
export PATH=/usr/local/bin:$PATH
ansible --version
Expand Down
Loading