Installation instructions for the Slurm Operator on Kubernetes.
Install the cert-manager with its CRDs, if not already installed:
helm repo add jetstack https://charts.jetstack.io
helm repo update
helm install cert-manager jetstack/cert-manager \
--set 'crds.enabled=true' \
--namespace cert-manager --create-namespaceInstall the slurm-operator and its CRDs:
helm install slurm-operator-crds oci://ghcr.io/slinkyproject/charts/slurm-operator-crds
helm install slurm-operator oci://ghcr.io/slinkyproject/charts/slurm-operator \
--namespace=slinky --create-namespaceCheck if the slurm-operator deployed successfully:
kubectl --namespace=slinky get pods --selector='app.kubernetes.io/instance=slurm-operator'The output should be similar to:
NAME READY STATUS RESTARTS AGE
slurm-operator-5d86d75979-6wflf 1/1 Running 0 1m
slurm-operator-webhook-567c84547b-kr7zq 1/1 Running 0 1mIf you intend to manage the slurm-operator and the CRDs in the same helm
release, install it with the --set 'crds.enabled=true' argument.
helm install slurm-operator oci://ghcr.io/slinkyproject/charts/slurm-operator \
--set 'crds.enabled=true' \
--namespace=slinky --create-namespaceIf the cert-manager is not installed, then install the chart with the
--set 'certManager.enabled=false' argument, to avoid signing certificates via
cert-manager.
helm install slurm-operator oci://ghcr.io/slinkyproject/charts/slurm-operator \
--set 'certManager.enabled=false' \
--namespace=slinky --create-namespaceInstall a Slurm cluster via helm chart:
helm install slurm oci://ghcr.io/slinkyproject/charts/slurm \
--namespace=slurm --create-namespaceCheck if the Slurm cluster deployed successfully:
kubectl --namespace=slurm get podsThe output should be similar to:
NAME READY STATUS RESTARTS AGE
slurm-accounting-0 1/1 Running 0 2m
slurm-controller-0 3/3 Running 0 2m
slurm-login-slinky-7ff66445b5-wdjkn 1/1 Running 0 2m
slurm-restapi-77b9f969f7-kh4r8 1/1 Running 0 2m
slurm-worker-slinky-0 2/2 Running 0 2mNote
The above output is with all Slurm components enabled and configured properly.
By default, the Slurm controller (slurmctld) pod will store its state save data to a Persistent Volume (PV). Its Persistent Volume Claim (PVC) requests the Kubernetes default Storage Class.
If a default storage class is not defined or a specific storage class is
desired, then you can install Slurm with the
--set "controller.persistence.storageClassName=$STORAGE_CLASS" argument, where
$STORAGE_CLASS matches an existing storage class.
kubectl get storageclasses.storage.k8s.io
helm install slurm oci://ghcr.io/slinkyproject/charts/slurm \
--set "controller.persistence.storageClassName=$STORAGE_CLASS" \
--namespace=slurm --create-namespaceNote
Typically PVs will not be deleted after the PVC is deleted. Therefore, PVs may need to be manually deleted when no longer needed.
If Slurm controller (slurmctld) persistence is not desired (typically for
testing), it can be disabled by installing Slurm with the
--set 'controller.persistence.enabled=false' argument.
helm install slurm oci://ghcr.io/slinkyproject/charts/slurm \
--set 'controller.persistence.enabled=false' \
--namespace=slurm --create-namespaceWarning
Without Slurm controller persistence, the state of the Slurm cluster is lost between Controller pod restarts. Moreover, these restarts may impact operation of the cluster and running workloads. Hence, disabling persistence is not recommended for production usage.
You will need to configure Slurm accounting to point at a database. There are multiple methods to provide a database for Slurm.
Either use:
- the mariadb-operator
- the mysql-operator
- any Slurm compatible database
- mysql/mariadb compatible alternatives
- managed cloud database service
If you intend to enable accounting, install the mariadb-operator and its CRDs, if not already installed:
helm repo add mariadb-operator https://helm.mariadb.com/mariadb-operator
helm repo update
helm install mariadb-operator-crds mariadb-operator/mariadb-operator-crds
helm install mariadb-operator mariadb-operator/mariadb-operator \
--namespace mariadb --create-namespaceCreate the slurm namespace.
kubectl create namespace slurmCreate a mariadb database via CR.
kubectl apply -f - <<EOF
apiVersion: k8s.mariadb.com/v1alpha1
kind: MariaDB
metadata:
name: mariadb
namespace: slurm
spec:
rootPasswordSecretKeyRef:
name: mariadb-root
key: password
generate: true
username: slurm
database: slurm_acct_db
passwordSecretKeyRef:
name: mariadb-password
key: password
generate: true
storage:
size: 16Gi
myCnf: |
[mariadb]
bind-address=*
default_storage_engine=InnoDB
binlog_format=row
innodb_autoinc_lock_mode=2
innodb_buffer_pool_size=4096M
innodb_lock_wait_timeout=900
innodb_log_file_size=1024M
max_allowed_packet=256M
EOFNote
The mariadb database example above aligns with the Slurm chart's default
accounting.storageConfig. If your actual database configuration is
different, then you will have to update the accounting.storageConfig to work
with your configuration.
Then install a Slurm cluster via helm chart with the
--set 'accounting.enabled=true' argument.
helm install slurm oci://ghcr.io/slinkyproject/charts/slurm \
--set 'accounting.enabled=true' \
--namespace=slurm --create-namespaceIf you intend to collect metrics, install prometheus and its CRDs, if not already installed:
helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
helm repo update
helm install prometheus prometheus-community/kube-prometheus-stack \
--set 'installCRDs=true' \
--namespace prometheus --create-namespaceThen install a Slurm cluster via helm chart with the
--set 'slurm-exporter.enabled=true' argument.
helm install slurm oci://ghcr.io/slinkyproject/charts/slurm \
--set 'slurm-exporter.enabled=true' \
--namespace=slurm --create-namespaceYou will need to configure the Slurm chart such that the login pods can communicate with an identity service via sssd.
Warning
In this example, you will need to supply an sssd.conf (at
${HOME}/sssd.conf) that is configured for your environment.
Install a Slurm cluster via helm chart with the
--set 'loginsets.slinky.enabled=true' and
--set-file "loginsets.slinky.sssdConf=${HOME}/sssd.conf" arguments.
helm install slurm oci://ghcr.io/slinkyproject/charts/slurm \
--set 'loginsets.slinky.enabled=true' \
--set-file "loginsets.slinky.sssdConf=${HOME}/sssd.conf" \
--namespace=slurm --create-namespaceNote
Even if sssd is misconfigured, this method can still be used to SSH into the pod.
Install a Slurm cluster via helm chart with the
--set 'loginsets.slinky.enabled=true' and
--set-file "loginsets.slinky.rootSshAuthorizedKeys=${HOME}/.ssh/id_ed25519.pub"
arguments.
helm install slurm oci://ghcr.io/slinkyproject/charts/slurm \
--set 'loginsets.slinky.enabled=true' \
--set-file "loginsets.slinky.rootSshAuthorizedKeys=${HOME}/.ssh/id_ed25519.pub" \
--namespace=slurm --create-namespaceSSH through the login service:
SLURM_LOGIN_IP="$(kubectl get services -n slurm slurm-login-slinky -o jsonpath='{.status.loadBalancer.ingress[0].ip}')"
SLURM_LOGIN_PORT="$(kubectl get services -n slurm slurm-login-slinky -o jsonpath='{.status.loadBalancer.ingress[0].ports[0].port}')"
## Assuming your public SSH key was configured in `loginsets.slinky.rootSshAuthorizedKeys`.
ssh -p ${SLURM_LOGIN_PORT:-22} root@${SLURM_LOGIN_IP}
## Assuming SSSD was configured correctly.
ssh -p ${SLURM_LOGIN_PORT:-22} ${USER}@${SLURM_LOGIN_IP}Then, from a login pod, run Slurm commands to quickly test that Slurm is functioning:
sinfo
srun hostname
sbatch --wrap="sleep 60"
squeue
sacctSee Slurm Commands for more details on how to interact with Slurm.