Skip to content

NOAA-GSL/DockerSpackStackSlurmCluster

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Docker Slurm

Slurm Cluster with spack-stack

in Ubuntu Docker Images Using Docker Compose

This is an installation of a Slurm cluster and spack-stack inside Docker.

This work is an adaptation of the work done by Rodrigo Ancavil del Pino:

https://medium.com/analytics-vidhya/slurm-cluster-with-docker-9f242deee601

There are three containers:

  • A front-end container that acts as a Slurm cluster front-end node. spack-stack is installed on the front-end in /opt which is mounted across the cluster with docker compose as a shared volume
  • A master container that acts as a Slurm master node
  • A node container that acts as a Slurm compute node

These containers are launched using Docker Compose to build a fully functioning Slurm cluster. A docker-compose.yml file defines the cluster, specifying ports and volumes to be shared. Multiple instances of the node container can be used to create clusters of different sizes. The cluster behaves as if it were running on multiple nodes even if the containers are all running on the same host machine.

Quick Start

To start the slurm cluster environment:

docker-compose -f docker-compose.yml up -d

To stop the cluster:

docker-compose -f docker-compose.yml stop

To check the cluster logs:

docker-compose -f docker-compose.yml logs -f

(stop logs with CTRL-c")

To check status of the cluster containers:

docker-compose -f docker-compose.yml ps

To check status of Slurm:

docker exec slurm-frontend sinfo

To run a Slurm job:

docker exec slurm-frontend srun hostname

About

Containerized Slurm cluster with spack-stack installed

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published