aboutsummaryrefslogtreecommitdiff
path: root/cluster/prod
diff options
context:
space:
mode:
Diffstat (limited to 'cluster/prod')
-rw-r--r--cluster/prod/cluster.nix70
-rw-r--r--cluster/prod/node/celeri.nix29
l---------cluster/prod/node/celeri.site.nix1
-rw-r--r--cluster/prod/node/concombre.nix29
l---------cluster/prod/node/concombre.site.nix1
-rw-r--r--cluster/prod/node/courgette.nix29
l---------cluster/prod/node/courgette.site.nix1
-rw-r--r--cluster/prod/site/neptune.nix9
-rw-r--r--cluster/prod/ssh_config10
9 files changed, 0 insertions, 179 deletions
diff --git a/cluster/prod/cluster.nix b/cluster/prod/cluster.nix
deleted file mode 100644
index d131db7..0000000
--- a/cluster/prod/cluster.nix
+++ /dev/null
@@ -1,70 +0,0 @@
-{ config, pkgs, ... } @ args:
-
-{
- deuxfleurs.cluster_name = "prod";
- deuxfleurs.cluster_nodes = [
- {
- hostname = "concombre";
- site_name = "neptune";
- publicKey = "VvXT0fPDfWsHxumZqVShpS33dJQAdpJ1E79ZbCBJP34=";
- IP = "10.42.1.31";
- endpoint = "82.66.112.151:33731";
- lan_endpoint = "192.168.1.31:33731";
- }
- {
- hostname = "courgette";
- site_name = "neptune";
- publicKey = "goTkBJGmzrGDOAjUcdH9G0JekipqSMoaYQdB6IHnzi0=";
- IP = "10.42.1.32";
- endpoint = "82.66.112.151:33732";
- lan_endpoint = "192.168.1.32:33732";
- }
- {
- hostname = "celeri";
- site_name = "neptune";
- publicKey = "oZDAb8LoLW87ktUHyFFec0VaIar97bqq47mGbdVqJ0U=";
- IP = "10.42.1.33";
- endpoint = "82.66.112.151:33733";
- lan_endpoint = "192.168.1.33:33733";
- }
- ];
- deuxfleurs.admin_nodes = [
- {
- hostname = "hammerhead";
- publicKey = "b5hF+GSTgg3oM6wnjL7jRbfyf1jtsWdVptPPbAh3Qic=";
- IP = "10.42.0.1";
- endpoint = "5.135.179.11:51349";
- }
- {
- hostname = "robinson";
- publicKey = "ETaZFil3mFXlJ0LaJZyWqJVLV2IZUF5PB/8M7WbQSTg=";
- IP = "10.42.0.42";
- endpoint = "77.141.67.109:33742";
- }
- {
- hostname = "shiki";
- publicKey = "QUiUNMk70TEQ75Ut7Uqikr5uGVSXmx8EGNkGM6tANlg=";
- IP = "10.42.0.206";
- endpoint = "37.187.118.206:51820";
- }
- {
- hostname = "lindy";
- publicKey = "wen9GnZy2iLT6RyHfn7ydS/wvdvow1XPmhZxIkrDbks=";
- IP = "10.42.0.66";
- endpoint = "82.66.112.151:33766";
- }
- ];
- deuxfleurs.admin_accounts = {
- lx = [
- # Keys for accessing nodes from outside
- "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJpaBZdYxHqMxhv2RExAOa7nkKhPBOHupMP3mYaZ73w9 lx@lindy"
- "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDIDdVbA9fEdqSr5UJ77NnoIqDTVp8ca5kHExhZYI4ecBExFJfonJllXMBN9KdC4ukxtY8Ug47PcMOfMaTBZQc+e+KpvDWpkBt15Xpem3RCxmMBES79sLL7LgtAdBXc5mNaCX8EOEVixWKdarjvxRyf6py6the51G5muaiMpoj5fae4ZpRGjhGTPefzc7y7zRWBUUZ8pYHW774BIaK6XT9gn3hyHV+Occjl/UODXvodktk55YtnuPi8adXTYEsHrVVz8AkFhx+cr0U/U8vtQnsTrZG+JmgQLqpXVs0RDw5bE1RefEbMuYNKxutYKUe3L+ZJtDe0M0MqOFI8a4F5TxP5 katchup@konata"
- ];
- };
-
- # For Garage external communication
- networking.firewall.allowedTCPPorts = [ 3901 ];
-
- # Enable netdata monitoring
- services.netdata.enable = true;
-}
diff --git a/cluster/prod/node/celeri.nix b/cluster/prod/node/celeri.nix
deleted file mode 100644
index 02a33c9..0000000
--- a/cluster/prod/node/celeri.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-# Configuration file local to this node
-
-{ config, pkgs, ... }:
-
-{
- # Use the systemd-boot EFI boot loader.
- boot.loader.systemd-boot.enable = true;
- boot.loader.timeout = 20;
- boot.loader.efi.canTouchEfiVariables = true;
-
- networking.hostName = "celeri";
-
- deuxfleurs.network_interface = "eno1";
- deuxfleurs.lan_ip = "192.168.1.33";
-
- networking.interfaces.eno1.ipv6.addresses = [
- {
- address = "2a01:e0a:c:a720::33";
- prefixLength = 64;
- }
- ];
-
- deuxfleurs.vpn_ip = "10.42.1.33";
- deuxfleurs.vpn_listen_port = 33733;
- deuxfleurs.is_raft_server = true;
-
- # Enable netdata monitoring
- services.netdata.enable = true;
-}
diff --git a/cluster/prod/node/celeri.site.nix b/cluster/prod/node/celeri.site.nix
deleted file mode 120000
index 04ee36c..0000000
--- a/cluster/prod/node/celeri.site.nix
+++ /dev/null
@@ -1 +0,0 @@
-../site/neptune.nix \ No newline at end of file
diff --git a/cluster/prod/node/concombre.nix b/cluster/prod/node/concombre.nix
deleted file mode 100644
index 517dcf8..0000000
--- a/cluster/prod/node/concombre.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-# Configuration file local to this node
-
-{ config, pkgs, ... }:
-
-{
- # Use the systemd-boot EFI boot loader.
- boot.loader.systemd-boot.enable = true;
- boot.loader.timeout = 20;
- boot.loader.efi.canTouchEfiVariables = true;
-
- networking.hostName = "concombre";
-
- deuxfleurs.network_interface = "eno1";
- deuxfleurs.lan_ip = "192.168.1.31";
-
- networking.interfaces.eno1.ipv6.addresses = [
- {
- address = "2a01:e0a:c:a720::31";
- prefixLength = 64;
- }
- ];
-
- deuxfleurs.vpn_ip = "10.42.1.31";
- deuxfleurs.vpn_listen_port = 33731;
- deuxfleurs.is_raft_server = true;
-
- # Enable netdata monitoring
- services.netdata.enable = true;
-}
diff --git a/cluster/prod/node/concombre.site.nix b/cluster/prod/node/concombre.site.nix
deleted file mode 120000
index 04ee36c..0000000
--- a/cluster/prod/node/concombre.site.nix
+++ /dev/null
@@ -1 +0,0 @@
-../site/neptune.nix \ No newline at end of file
diff --git a/cluster/prod/node/courgette.nix b/cluster/prod/node/courgette.nix
deleted file mode 100644
index d34e7a5..0000000
--- a/cluster/prod/node/courgette.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-# Configuration file local to this node
-
-{ config, pkgs, ... }:
-
-{
- # Use the systemd-boot EFI boot loader.
- boot.loader.systemd-boot.enable = true;
- boot.loader.timeout = 20;
- boot.loader.efi.canTouchEfiVariables = true;
-
- networking.hostName = "courgette";
-
- deuxfleurs.network_interface = "eno1";
- deuxfleurs.lan_ip = "192.168.1.32";
-
- networking.interfaces.eno1.ipv6.addresses = [
- {
- address = "2a01:e0a:c:a720::32";
- prefixLength = 64;
- }
- ];
-
- deuxfleurs.vpn_ip = "10.42.1.32";
- deuxfleurs.vpn_listen_port = 33732;
- deuxfleurs.is_raft_server = true;
-
- # Enable netdata monitoring
- services.netdata.enable = true;
-}
diff --git a/cluster/prod/node/courgette.site.nix b/cluster/prod/node/courgette.site.nix
deleted file mode 120000
index 04ee36c..0000000
--- a/cluster/prod/node/courgette.site.nix
+++ /dev/null
@@ -1 +0,0 @@
-../site/neptune.nix \ No newline at end of file
diff --git a/cluster/prod/site/neptune.nix b/cluster/prod/site/neptune.nix
deleted file mode 100644
index 900ddf0..0000000
--- a/cluster/prod/site/neptune.nix
+++ /dev/null
@@ -1,9 +0,0 @@
-{ config, pkgs, ... }:
-
-{
- deuxfleurs.site_name = "neptune";
- deuxfleurs.lan_default_gateway = "192.168.1.254";
- deuxfleurs.lan_ip_prefix_length = 24;
-
- networking.nameservers = [ "192.168.1.254" ];
-}
diff --git a/cluster/prod/ssh_config b/cluster/prod/ssh_config
deleted file mode 100644
index cb4841f..0000000
--- a/cluster/prod/ssh_config
+++ /dev/null
@@ -1,10 +0,0 @@
-UserKnownHostsFile ./ssh_known_hosts
-
-Host concombre
- HostName 2a01:e0a:c:a720::31
-
-Host courgette
- HostName 2a01:e0a:c:a720::32
-
-Host celeri
- HostName 2a01:e0a:c:a720::33