Workloads

July 29, 2026 ยท View on GitHub

Table of Contents

Overview

In Slurm, all workloads are represented by jobs. In slurm-bridge, however, there are a number of forms that workloads can take. While workloads can still be submitted as a Slurm job, slurm-bridge also enables users to submit workloads through Kubernetes. Most workloads that can be submitted to slurm-bridge from within Kubernetes are represented by an existing Kubernetes batch workload primitive.

At this time, slurm-bridge has scheduling support for Jobs, JobSets, Pods, PodGroup (1.36+) (scheduling.k8s.io/v1alpha2), PodGroup coscheduling (scheduler-plugins), and LeaderWorkerSets. If your workload requires or benefits from co-scheduled pod launch (e.g. MPI, multi-node), prefer PodGroup (1.36+) on Kubernetes 1.36+ or PodGroup coscheduling on older clusters.

Using the slurm-bridge Scheduler

slurm-bridge uses an admission controller to control which resources are scheduled using the slurm-bridge-scheduler. The slurm-bridge-scheduler is designed as a non-primary scheduler and is not intended to replace the default kube-scheduler. The slurm-bridge admission controller only schedules pods that request slurm-bridge as their scheduler or are in a configured namespace. By default, the slurm-bridge admission controller is configured to automatically use slurm-bridge as the scheduler for all pods in the configured namespaces.

Alternatively, a pod can specify Pod.Spec.schedulerName=slurm-bridge-scheduler from any namespace to indicate that it should be scheduler using the slurm-bridge-scheduler.

Please review slurm-bridge admission controller to learn more.

Device resources

Supported DRA DeviceClasses

slurm-bridge supports the following DRA DeviceClass extended resources:

DeviceClassExtended resourceDevice type
dra.cpudeviceclass.resource.kubernetes.io/dra.cpuCPU
gpu.nvidia.comdeviceclass.resource.kubernetes.io/gpu.nvidia.comNVIDIA GPU
gpu.example.comdeviceclass.resource.kubernetes.io/gpu.example.comExample GPU

For these resources, slurm-bridge translates the Slurm allocation into a DRA ResourceClaim and records the allocated devices for the Pod. Managed Pods that request any other DeviceClass extended resource are rejected during admission. Validation covers requests and limits in both init containers and regular containers.

Legacy GPU device plugins

The following non-DRA extended resources are also supported:

Extended resourceDevice plugin
nvidia.com/gpuNVIDIA GPU
amd.com/gpuAMD GPU

These resources use the generic device-plugin path. Their quantities are translated to a generic Slurm gres/gpu=<count> request. Slurm selects and reserves the node and GPU count, while kubelet and the device plugin choose the physical devices. No DRA ResourceClaim is created, so Slurm and Kubernetes do not coordinate exact GPU identities on this path.

CPU DRA

Native cpu requests do not activate the CPU DRA driver. To request CPUs from the dra.cpu DeviceClass, specify its extended resource explicitly:

resources:
  requests:
    deviceclass.resource.kubernetes.io/dra.cpu: "2"
  limits:
    deviceclass.resource.kubernetes.io/dra.cpu: "2"

The extended resource quantity is used as the Slurm CPU count. A Pod that requests this resource cannot also specify native cpu requests or limits.

CPU DRA constrains the container to Slurm's allocated CPU set. The CPU driver also removes DRA-allocated CPUs from the shared CPU sets of running native containers. Native CPU requests still reserve capacity in Slurm, but native containers share all CPUs not claimed through DRA; Slurm's native CPU IDs do not define their container CPU sets.

Annotations

Users can influence how slurm-bridge represents their Kubernetes workload in Slurm by adding slurmjob.slinky.slurm.net/* annotations to the annotation source identified in Pod grouping. These annotations configure the Slurm external job; they are separate from the scheduler-managed metadata.

Example "pause" bare pod to illustrate annotations:

apiVersion: v1
kind: Pod
metadata:
  name: pause
  # Slurm job annotations on this Pod
  annotations:
    slurmjob.slinky.slurm.net/timelimit: "5"
    slurmjob.slinky.slurm.net/account: foo
spec:
  schedulerName: slurm-bridge-scheduler
  containers:
    - name: pause
      image: registry.k8s.io/pause:3.6
      resources:
        limits:
          cpu: "1"
          memory: 100Mi

Example "sleep" Job to illustrate annotations:

apiVersion: batch/v1
kind: Job
metadata:
  name: sleep
  # Slurm job annotations on the Job, not spec.template.metadata
  annotations:
    slurmjob.slinky.slurm.net/timelimit: "5"
    slurmjob.slinky.slurm.net/account: foo
spec:
  template:
    spec:
      schedulerName: slurm-bridge-scheduler
      restartPolicy: Never
      containers:
        - name: sleep
          image: busybox:stable
          command: [sh, -c, sleep 3]
          resources:
            limits:
              cpu: "1"
              memory: 100Mi

Resolution rules

Slurm parameters are resolved from lowest to highest precedence: scheduler or Slurm defaults -> values derived from the workload and Pods -> Slurm job annotations. For built-in PodGroups, annotation precedence is PodGroup -> Job -> Workload.

Keys that do not conflict are combined.

Supported Slurm job annotations

PurposeAnnotation suffixes
Identity and accountingaccount, group-id, user-id, wckey
Scheduling policyconstraints, exclusive, licenses, partition, priority, qos, reservation
Resourcescpu-per-task, gres, max-nodes, mem-per-node, min-nodes
Naming and durationjob-name, timelimit

Prefix every suffix with slurmjob.slinky.slurm.net/; for example, slurmjob.slinky.slurm.net/account. Node counts, priority, and timelimit are base-10 integers; timelimit is measured in minutes. CPU and memory accept Kubernetes quantities. exclusive: "false" requests non-exclusive placement; exclusive placement is the default.

Annotations can update a Slurm job while it is pending. Slurm validates each change. If it rejects an update, the previous Slurm job value remains in effect. Once Slurm allocates the job, treat its annotations and Pod membership as fixed.

Scheduler-managed Pod metadata

Slurm-bridge writes the following metadata to Pods as it creates and allocates the external job:

MetadataTypeMeaning
scheduler.slinky.slurm.net/slurm-jobidLabelSlurm job ID associated with the Pod. All Pods represented by one external job receive the same value.
slinky.slurm.net/slurm-nodeAnnotationKubernetes node selected from the Slurm allocation for this Pod.

These keys are owned by slurm-bridge. Users cannot set them when creating a managed Pod or change them after that Pod is running.

Pod grouping

Slurm-bridge turns each group of Kubernetes Pods into one Slurm external job:

WorkloadPods in one external jobWhere to put annotations
PodThat PodPod
Job or JobSetOne PodJob or JobSet
Built-in PodGroupPods with the same spec.schedulingGroup.podGroupNamePodGroup, Job, or Workload
PodGroup coschedulingPods with the same scheduling.x-k8s.io/pod-group labelPodGroup
LeaderWorkerSetOne LeaderWorkerSet groupLeaderWorkerSet
Other readable controllerOne PodHighest readable controller

Slurm-bridge first follows controller owner references toward the root object. It selects the first applicable grouping mechanism in this order: built-in PodGroup -> PodGroup coscheduling -> highest recognized workload type in the owner chain -> the Pod itself. When no recognized workload exists, the highest readable controller remains the annotation source for the per-Pod external job.

For Jobs, JobSets, and LeaderWorkerSets, annotations belong on the top-level workload object, not its Pod template or generated child objects.

For grouped workloads:

  • JobSet: JobSet annotations apply to every per-Pod external job. Annotations on generated Jobs or Pods are ignored.
  • LeaderWorkerSet: LeaderWorkerSet annotations apply to every group external job. Pod annotations are ignored.
  • Built-in PodGroup: annotations are merged from the PodGroup, root owning Job, and Workload. Pod annotations are ignored.
  • PodGroup coscheduling: only PodGroup annotations apply to the group. Owning Job and Pod annotations are ignored.

The built-in Workload API is therefore different from the other grouped workloads: it merges three annotation sources instead of reading one top-level source.

Other controller owners

The Pod's direct controller owner must exist and be readable by the slurm-bridge scheduler. While following the owner chain, slurm-bridge remembers the highest recognized workload type. Higher readable controllers do not replace that workload as the scheduling root. If no recognized workload is found, slurm-bridge schedules each Pod as a separate external job and reads annotations from the highest readable controller. Annotations on lower controllers and the Pod are ignored.

If RBAC forbids access to a higher, unsupported controller, traversal stops and slurm-bridge uses the highest recognized workload already found, or otherwise the highest readable controller.

Slurm-bridge does not fall back when access to a supported workload type is forbidden; that indicates missing scheduler RBAC. It also does not fall back when an owner object is missing, its API kind is not served, or the API request fails for another reason. These conditions indicate a broken owner chain or a potentially transient cluster error, so scheduling fails instead.

The default scheduler RBAC can read ReplicaSets and StatefulSets, but not Deployments, DaemonSets, or arbitrary custom controllers. For example, owner resolution for Deployment -> ReplicaSet -> Pod stops at the ReplicaSet if the scheduler cannot read the Deployment, and the Pod is still scheduled. If the ReplicaSet itself cannot be retrieved, scheduling fails because no controller in the chain was successfully resolved.

PodGroup (1.36+)

PodGroup is a built-in Kubernetes API introduced in 1.36. This section applies to clusters running 1.36+ with the GenericWorkload feature gate and scheduling.k8s.io/v1alpha2 API enabled (see hack/kind.yaml and make demo-examples). After slurm-bridge assigns nodes to the gang, PodGroup STATUS becomes Scheduled (PodGroupScheduled=True); it is not tied to Job completion.

A Workload defines immutable podGroupTemplates (gang or basic scheduling). Workload controllers create runtime PodGroup objects from those templates. Pods opt in with spec.schedulingGroup.podGroupName pointing at their PodGroup. slurm-bridge reads the PodGroup, groups pods by scheduling group, and applies the same external-job flow as other co-scheduled workload types.

Example manifests (see also hack/examples/workload/):

apiVersion: scheduling.k8s.io/v1alpha2
kind: Workload
metadata:
  name: training-workload
  annotations:
    slurmjob.slinky.slurm.net/job-name: training-job
    slurmjob.slinky.slurm.net/timelimit: "5"
spec:
  controllerRef:
    apiGroup: batch
    kind: Job
    name: training-job
  podGroupTemplates:
    - name: workers
      schedulingPolicy:
        gang:
          minCount: 2
---
apiVersion: scheduling.k8s.io/v1alpha2
kind: PodGroup
metadata:
  name: training-job-workers
spec:
  podGroupTemplateRef:
    workload:
      workloadName: training-workload
      podGroupTemplateName: workers
  schedulingPolicy:
    gang:
      minCount: 2
---
apiVersion: batch/v1
kind: Job
metadata:
  name: training-job
spec:
  template:
    spec:
      schedulerName: slurm-bridge-scheduler
      schedulingGroup:
        podGroupName: training-job-workers

Ref: Workload API

To override Slurm submission parameters, add optional slurmjob.slinky.slurm.net/* annotations on the Workload, owning Job, or runtime PodGroup. On conflict, Workload > Job > PodGroup. Without them, the Slurm job name defaults to the PodGroup object name (not the Workload name) and the partition defaults to the scheduler configuration. See Annotations for the full key list.

If multiple layers set slurmjob.slinky.slurm.net/job-name, annotations are applied PodGroup -> Job -> Workload, so the Workload wins. In the example above, the PodGroup is named training-job-workers but the Workload sets slurmjob.slinky.slurm.net/job-name: training-job, so Slurm receives training-job. A PodGroup cannot override a job-name set on its Workload or owning Job. For per-gang names, omit job-name from the Workload and set it on each PodGroup or owning Job instead.

A Workload may define several podGroupTemplates, each producing a runtime PodGroup. Workload-level identifiers such as job-name then apply to every PodGroup under that Workload. Each gang still submits a separate Slurm external job (distinct job ID on the pods), but all share the same Slurm job name in squeue. Use the Workload for shared parameters (partition, account, QOS, time limit) and PodGroup or Job for per-gang identifiers.

JobSets

This section assumes JobSets is installed.

JobSet pods are scheduled on a per-pod basis. The JobSet controller is responsible for managing the JobSet status and other Pod interactions once marked as completed.

PodGroup coscheduling

This is not the same API as PodGroup (1.36+) above. It uses the scheduler-plugins CRD scheduling.x-k8s.io/v1alpha1 and requires installing on clusters before 1.36 (or where the built-in PodGroup API is unavailable) the PodGroup coscheduling CRD plus the out-of-tree CoScheduling controller:

helm install --repo https://scheduler-plugins.sigs.k8s.io scheduler-plugins scheduler-plugins \
  --namespace scheduler-plugins --create-namespace \
  --set 'plugins.enabled={CoScheduling}' --set 'scheduler.replicaCount=0'

Pods join the group via the label scheduling.x-k8s.io/pod-group (see hack/examples/podgroup-coscheduling/). Gang size is spec.minMember on the PodGroup object.

PodGroup (1.36+)PodGroup coscheduling
API groupscheduling.k8s.io/v1alpha2scheduling.x-k8s.io/v1alpha1
InstallFeature gate + runtime configCRD + helm chart
Pod associationspec.schedulingGroup.podGroupNameLabel scheduling.x-k8s.io/pod-group
Gang fieldspec.schedulingPolicy.gang.minCountspec.minMember

Both paths are supported by slurm-bridge independently.

LeaderWorkerSet

This section assumes LeaderWorkerSet is installed.

LeaderWorkerSet groups will be co-scheduled so pods of each group will be guaranteed to launch together.

Note

Topology-aware placement is not supported yet, so some features of LeaderWorkerSet may not behave as expected.