-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for ParallelCluster 3.11.0 (#260)
* Add ParallelCluster 3.11.0 support Resolves #258 * Add support for APC 3.11.0 Disable spack pyxis plugin so that external login nodes work. The spack plugin has to be built on each login node OS and arch. Related to #259 Resolves #258
- Loading branch information
Showing
4 changed files
with
35 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
source/resources/playbooks/roles/ParallelClusterHeadNode/tasks/config-pyxis.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
# APC 3.11.0 added the pyxis Slurm Spank plugin | ||
# This needs to also be built on login nodes. | ||
# Currently, I am not doing that so until then, disable the Spank plugin by | ||
# renaming plugstack.conf | ||
|
||
- name: Rename plugstack.conf to plugstack.conf.back | ||
shell: | ||
cmd: | | ||
set -ex | ||
plugstack_conf=/opt/slurm/etc/plugstack.conf | ||
if [[ -e $plugstack_conf ]]; then | ||
mv $plugstack_conf ${plugstack_conf}.back | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters