Skip to content

Instantly share code, notes, and snippets.

@ajdecon
Created January 21, 2012 21:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ajdecon/1654044 to your computer and use it in GitHub Desktop.
Save ajdecon/1654044 to your computer and use it in GitHub Desktop.
Default SLURM attributes for blogpost
# SLURM attributes
default['slurm']['master'] = "slmaster"
default['slurm']['master_addr'] = "10.0.0.1"
default['slurm']['computes'] = [ "compute1", "compute2" ]
default['slurm']['compute_addrs'] = [ "10.0.1.1", "10.0.1.2" ]
default['slurm']['part_name'] = "production"
default['slurm']['user'] = "slurm"
default['slurm']['cpus'] = "1"
# MUNGE attributes
default['munge']['key'] = "RandomKeyGoesHereRandomKeyGoesHereRandomKeyGoesHereRandomKeyGoesHere"
# NFS share attributes
default['nfs']['headnode_addr'] = default['slurm']['master_addr']
default['nfs']['shared_dirs'] = ["/scratch"]
default['nfs']['clients'] = default['slurm']['compute_addrs']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment