From 6e853e14a6ad8c5e4c958a74ac7af052fb9b0012 Mon Sep 17 00:00:00 2001 From: kekwlboy12469 Date: Sun, 5 Oct 2025 18:52:21 +0530 Subject: [PATCH 1/3] scrun: add page Add tldr page for scrun - Slurm's OCI runtime proxy for containers. scrun acts as an interface between Docker/Podman and Slurm, allowing containers to be executed as Slurm jobs on compute nodes. Closes #11991 --- pages/linux/scrun.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 pages/linux/scrun.md diff --git a/pages/linux/scrun.md b/pages/linux/scrun.md new file mode 100644 index 00000000000000..fcc4f4a42fde37 --- /dev/null +++ b/pages/linux/scrun.md @@ -0,0 +1,36 @@ +# scrun + +> An OCI runtime proxy for Slurm that runs containers as jobs. +> More information: . + +- Create a new container with a specific ID: + +`scrun create {{container_id}}` + +- Start a previously created container: + +`scrun start {{container_id}}` + +- Query the state of a container: + +`scrun state {{container_id}}` + +- Send a signal to a container (default: SIGTERM): + +`scrun kill {{container_id}}` + +- Send a specific signal to a container: + +`scrun kill {{container_id}} {{SIGKILL}}` + +- Delete a container and release its resources: + +`scrun delete {{container_id}}` + +- Enable debug logging: + +`scrun --debug {{create|start|kill|delete}} {{container_id}}` + +- Display version information: + +`scrun --version` From 5c4b3b8e5b22f97144dccca12be95deae82425bb Mon Sep 17 00:00:00 2001 From: kekwlboy12469 Date: Mon, 6 Oct 2025 01:18:39 +0530 Subject: [PATCH 2/3] Update pages/linux/scrun.md Co-authored-by: Managor <42655600+Managor@users.noreply.github.com> --- pages/linux/scrun.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/linux/scrun.md b/pages/linux/scrun.md index fcc4f4a42fde37..99b35eee016ff1 100644 --- a/pages/linux/scrun.md +++ b/pages/linux/scrun.md @@ -31,6 +31,6 @@ `scrun --debug {{create|start|kill|delete}} {{container_id}}` -- Display version information: +- Display version: `scrun --version` From beb0a4209205e1cb2eeac20d76f2f19db2a040d2 Mon Sep 17 00:00:00 2001 From: kekwlboy12469 Date: Mon, 6 Oct 2025 21:32:36 +0530 Subject: [PATCH 3/3] Update scrun.md --- pages/linux/scrun.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/linux/scrun.md b/pages/linux/scrun.md index 99b35eee016ff1..a9c1b456859fe1 100644 --- a/pages/linux/scrun.md +++ b/pages/linux/scrun.md @@ -29,7 +29,7 @@ - Enable debug logging: -`scrun --debug {{create|start|kill|delete}} {{container_id}}` +`scrun {{create|start|kill|delete}} {{container_id}} --debug` - Display version: