From dcff38b8e24fe7e7b7b92b731e3860ece6e6efb0 Mon Sep 17 00:00:00 2001 From: Florian Sesser <florian@privatestorage.io> Date: Tue, 15 Jun 2021 20:28:11 +0000 Subject: [PATCH] There is no storage000 node - remove its config files. See https://whetstone.privatestorage.io/privatestorage/PrivateStorageio/-/merge_requests/103#note_13854 --- morph/grid/production/storage000-config.nix | 7 ---- morph/grid/production/storage000-hardware.nix | 37 ------------------- 2 files changed, 44 deletions(-) delete mode 100644 morph/grid/production/storage000-config.nix delete mode 100644 morph/grid/production/storage000-hardware.nix diff --git a/morph/grid/production/storage000-config.nix b/morph/grid/production/storage000-config.nix deleted file mode 100644 index 2a056a54..00000000 --- a/morph/grid/production/storage000-config.nix +++ /dev/null @@ -1,7 +0,0 @@ -{ "interface" = "eno1"; - "publicIPv4" = "69.36.183.24"; - "prefixLength" = 24; - "gateway" = "69.36.183.1"; - "gatewayInterface" = "eno1"; - "grubDeviceID" = "wwn-0x5000c500936410b9"; -} diff --git a/morph/grid/production/storage000-hardware.nix b/morph/grid/production/storage000-hardware.nix deleted file mode 100644 index f0d8c290..00000000 --- a/morph/grid/production/storage000-hardware.nix +++ /dev/null @@ -1,37 +0,0 @@ -# Do not modify this file! It was generated by ‘nixos-generate-config’ -# and may be overwritten by future invocations. Please make changes -# to /etc/nixos/configuration.nix instead. -{ config, lib, pkgs, ... }: - -{ - imports = - [ <nixpkgs/nixos/modules/installer/scan/not-detected.nix> - ]; - - boot.initrd.availableKernelModules = [ "ahci" "xhci_pci" "ehci_pci" "megaraid_sas" "usbhid" "sd_mod" ]; - boot.initrd.kernelModules = [ ]; - boot.kernelModules = [ "kvm-intel" ]; - boot.extraModulePackages = [ ]; - - fileSystems."/" = - { device = "/dev/disk/by-uuid/ccabaa39-d888-467e-b8d9-75b5790a91aa"; - fsType = "ext4"; - }; - - fileSystems."/boot" = - { device = "/dev/disk/by-uuid/849c8696-a7e6-42d2-810d-15326d9f9ff6"; - fsType = "ext4"; - }; - - fileSystems."/storage" = - { device = "/dev/disk/by-uuid/2745cbf3-5a63-491d-ab92-6dfd4da1b504"; - fsType = "ext4"; - }; - - swapDevices = - [ { device = "/dev/disk/by-uuid/c6f09c9a-572a-4b0f-b792-412cb5c749d4"; } - ]; - - nix.maxJobs = lib.mkDefault 32; - powerManagement.cpuFreqGovernor = lib.mkDefault "powersave"; -} -- GitLab