From 24cf07e8ca8b95635cdce101f5dc52301feec7c9 Mon Sep 17 00:00:00 2001 From: Shane A Date: Fri, 7 Jun 2024 15:18:44 -0700 Subject: [PATCH] Do not add nfs for jupiter 2 cluster --- CHANGELOG.md | 4 ++++ gantry/constants.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 917f08c..f0f635f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Added `-l/--latest`, `-w/--workspace`, and `--dry-run` options to `gantry stop` command. +### Fixed + +- Don't automatically attach NFS to "jupiter 2" cluster. + ## [v1.4.0](https://github.com/allenai/beaker-gantry/releases/tag/v1.4.0) - 2024-05-31 ### Added diff --git a/gantry/constants.py b/gantry/constants.py index fead531..d0432be 100644 --- a/gantry/constants.py +++ b/gantry/constants.py @@ -18,4 +18,4 @@ NFS_MOUNT = "/net/nfs.cirrascale" -CLUSTERS_WITHOUT_NFS = {"ai2/jupiter-cirrascale"} +CLUSTERS_WITHOUT_NFS = {"ai2/jupiter-cirrascale", "ai2/jupiter-cirrascale-2"}