We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Because https://github.com/stackhpc/ansible-role-openhpc/blob/master/templates/slurm.conf.j2#L134 defaults to setting a partition to Default=YES if a group/partition in openhpc_slurm_partitions does not define the default parameter, in a case like this the second partition still ends up being the actual default in slurm:
Default=YES
openhpc_slurm_partitions
default
openhpc_slurm_partitions: - name: first default: YES - name: second
and second has to specifically be marked default: NO to make the first the default.
second
default: NO
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Because https://github.com/stackhpc/ansible-role-openhpc/blob/master/templates/slurm.conf.j2#L134 defaults to setting a partition to
Default=YES
if a group/partition inopenhpc_slurm_partitions
does not define thedefault
parameter, in a case like this the second partition still ends up being the actual default in slurm:and
second
has to specifically be markeddefault: NO
to make the first the default.The text was updated successfully, but these errors were encountered: