main.yml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. # Copyright 2020 Dell Inc. or its subsidiaries. All Rights Reserved.
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. ---
  15. common_packages:
  16. - slurm-slurmd
  17. - slurm-pmi
  18. - munge
  19. - munge-libs
  20. - munge-devel
  21. - mariadb-server
  22. - mariadb-devel
  23. - man2html
  24. common_python2_packages:
  25. - MySQL-python
  26. - python-netaddr
  27. common_python3_packages:
  28. - MySQL-python3
  29. - python3-netaddr
  30. hostname_dest: "/etc/hostname"
  31. hosts_dest: "/etc/hosts"
  32. munge_dest: "/etc/munge/"
  33. munge_cmd: "/usr/sbin/create-munge-key -f"
  34. munge_mode: "0400"
  35. slurm_mode: "0644"
  36. common_mode: "0777"
  37. slurm_dest: "/etc/slurm/"
  38. slurm_confpth: "/etc/slurm/slurm.conf"
  39. slurm_user: "slurm"
  40. slurmctld_port: "6817"
  41. slurmd_port: "6818"
  42. srun_port_range: "60001-63000"
  43. acct_port: "6819"
  44. slurm_uid: "6001"
  45. slurm_logpth: "/var/log/slurm/"
  46. slurm_pidpth: "/var/run/slurm/"
  47. gen_mode: "0755"
  48. spool_dir: "/var/spool/"
  49. spool_pth: "/var/spool/slurm/"
  50. slurmctld_pid: "/var/run/slurmctld.pid"
  51. slurmd_pid: "/var/run/slurmd.pid"
  52. cluster_name : "manager,compute"
  53. slurmctld_log: "/var/log/slurm/slurmctld.log"
  54. slurmd_log: "/var/log/slurm/slurmd.log"
  55. os_centos: 'centos'
  56. os_rocky: 'rocky'
  57. os_version: '8.0'