ansible_slurm/README.md

53 lines
1.1 KiB
Markdown
Raw Normal View History

2019-01-26 16:47:07 -04:00
Slurm
=====
Install and configure Slurm
Role Variables
--------------
All variables are optional. However, if unset, the role will essentially do nothing. See the [defaults][defaults] and [example playbook](#example-playbook) for examples.
You need to define a `slurm_user` like this, unless you want to override anything.
```yaml
slurm_user: {}
```
For the various roles a slurm node can play, you can either set group names, or add values to a list, `slurm_roles`.
- group slurmservers or `slurm_roles: ['controller']`
- group slurmexechosts or `slurm_roles: ['exec']`
- group slurmdbdservers or `slurm_roles: ['dbd']`
Dependencies
------------
None.
Example Playbook
----------------
```yaml
- name: Slurm all in One
hosts: all
vars:
slurm_user: {}
slurm_roles: ['controller', 'exec', 'dbd']
roles:
- galaxyproject.slurm
```
License
-------
MIT
Author Information
------------------
[Nate Coraor](https://github.com/natefoo)
[Helena Rasche](https://github.com/erasche)
[View contributors on GitHub](https://github.com/galaxyproject/ansible-cvmfs/graphs/contributors)