From 0a5dea1d1e85b7e3d129894cd1b9cf3be7d2dc2a Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone <exarkun@twistedmatrix.com> Date: Wed, 4 Sep 2019 20:17:55 -0400 Subject: [PATCH] Rename this node to reflect its new role There is not going to be a staging grid. There will be a testing grid and a production grid. The testing grid will be loosey goosey. The production grid will have incremental rollouts. --- morph/grid.nix | 2 +- morph/{staging000-hardware.nix => testing000-hardware.nix} | 0 morph/{staging000.nix => testing000.nix} | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename morph/{staging000-hardware.nix => testing000-hardware.nix} (100%) rename morph/{staging000.nix => testing000.nix} (87%) diff --git a/morph/grid.nix b/morph/grid.nix index f3bd9ed0..8a34f8ee 100644 --- a/morph/grid.nix +++ b/morph/grid.nix @@ -32,7 +32,7 @@ in # # The names must be unique! - "staging000" = import ./staging000.nix { + "testing000" = import ./testing000.nix { publicIPv4 = "3.123.26.90"; # Pass along some of the Tahoe-LAFS configuration. If we have much more # configuration than this we may want to keep it bundled up in one value diff --git a/morph/staging000-hardware.nix b/morph/testing000-hardware.nix similarity index 100% rename from morph/staging000-hardware.nix rename to morph/testing000-hardware.nix diff --git a/morph/staging000.nix b/morph/testing000.nix similarity index 87% rename from morph/staging000.nix rename to morph/testing000.nix index 592c124b..3a5bd414 100644 --- a/morph/staging000.nix +++ b/morph/testing000.nix @@ -1,6 +1,6 @@ { publicIPv4, publicStoragePort }: { imports = [ - ./staging000-hardware.nix + ./testing000-hardware.nix ../nixos/modules/private-storage.nix ]; -- GitLab