Skip to content

Commit

Permalink
Upgrade installed Slurm to 23.02.7
Browse files Browse the repository at this point in the history
Includes fixes for CVE-2023-49933 through CVE-2023-49938.
  • Loading branch information
bsngardner committed Dec 13, 2023
1 parent 8d68a95 commit d25825e
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ stages:

variables:
GOOGLE_APPLICATION_CREDENTIALS: $CI_PROJECT_DIR/sa.json
SLURM_VERSION: 23.02.6
SLURM_VERSION: 23.02.7
BRANCH: $CI_COMMIT_BRANCH

default:
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.

## \[6.2.1\]

- Upgrade installed Slurm to 23.02.6
- Upgrade installed Slurm to 23.02.7
- Fix deprecation warning in google_secret_manager_secret.
- Fix TPU delete_node API return message.

Expand Down
2 changes: 1 addition & 1 deletion docs/images.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ can be created and used instead.
### Installed Software for HPC

- [Slurm](https://www.schedmd.com/downloads.php)
- 23.02.6
- 23.02.7
- [lmod](https://lmod.readthedocs.io/en/latest/index.html)
- [openmpi](https://www.open-mpi.org/)
- v4.1.x
Expand Down
2 changes: 1 addition & 1 deletion packer/docker/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def get_tf_versions(yaml_file_path):
"--slurm_version",
"-s",
dest="slurm_version",
default="23.02.6",
default="23.02.7",
help="The Slurm version to use for the image.",
)
parser.add_argument(
Expand Down
2 changes: 1 addition & 1 deletion packer/docker/example.pkrvars.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ tags = [
# PROVISION #
#############

# slurm_version = "23.02.6"
# slurm_version = "23.02.7"

# Disable some ansible roles here; they are enabled by default
# install_cuda = false
Expand Down
2 changes: 1 addition & 1 deletion packer/example.pkrvars.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ tags = [
# PROVISION #
#############

# slurm_version = "23.02.6"
# slurm_version = "23.02.7"

# Disable some ansible roles here; they are enabled by default
# install_cuda = false
Expand Down
2 changes: 1 addition & 1 deletion packer/variables.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ This value can be:
> NOTE: Use prefix 'b:' to install via 'git checkout' instead of archive.
EOD
type = string
default = "23.02.6"
default = "23.02.7"

validation {
condition = can(regex("^(?P<major>\\d{2})\\.(?P<minor>\\d{2})(?P<end>\\.(?P<patch>\\d+)(?P<sub>-(?P<rev>\\d+\\w*))?|\\-(?P<meta>latest))$|^b:(?P<branch>.+)$", var.slurm_version))
Expand Down

0 comments on commit d25825e

Please sign in to comment.