From e1922a1fd359990ce11bd89e2c8e38daa02639f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix-Antoine=20Fortin?= Date: Fri, 24 Mar 2023 10:12:41 -0400 Subject: [PATCH 1/2] Add 23.02 to the list of valid Slurm versions --- site/profile/manifests/slurm.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/profile/manifests/slurm.pp b/site/profile/manifests/slurm.pp index 128761685..37cbae05b 100644 --- a/site/profile/manifests/slurm.pp +++ b/site/profile/manifests/slurm.pp @@ -9,7 +9,7 @@ class profile::slurm::base ( String $cluster_name, String $munge_key, - Enum['20.11', '21.08', '22.05'] $slurm_version, + Enum['20.11', '21.08', '22.05', '23.02'] $slurm_version, Integer $os_reserved_memory, Integer $suspend_time = 3600, Integer $resume_timeout = 3600, From aa5bdbe566fbbee2be701519238ae236412387b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix-Antoine=20Fortin?= Date: Fri, 24 Mar 2023 14:46:22 -0400 Subject: [PATCH 2/2] Updarte cc_tmpfs_mounts_url --- site/profile/manifests/slurm.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/profile/manifests/slurm.pp b/site/profile/manifests/slurm.pp index 37cbae05b..e2699bc82 100644 --- a/site/profile/manifests/slurm.pp +++ b/site/profile/manifests/slurm.pp @@ -551,7 +551,7 @@ $slurm_version = lookup('profile::slurm::base::slurm_version') if versioncmp($slurm_version, '22.05') >= 0 { - $cc_tmpfs_mounts_url = 'https://download.copr.fedorainfracloud.org/results/cmdntrf/spank-cc-tmpfs_mounts-22.05/' + $cc_tmpfs_mounts_url = "https://download.copr.fedorainfracloud.org/results/cmdntrf/spank-cc-tmpfs_mounts-${slurm_version}/" } else { $cc_tmpfs_mounts_url = 'https://download.copr.fedorainfracloud.org/results/cmdntrf/spank-cc-tmpfs_mounts/' }