forked from Deuxfleurs/nixcfg
staging: add node df-pw5 at bespin
This commit is contained in:
parent
c11b6499b8
commit
26f78872e6
6 changed files with 46 additions and 0 deletions
|
@ -48,6 +48,14 @@
|
|||
lan_endpoint = "192.168.1.25:33799";
|
||||
endpoint = "90.49.20.119:33721";
|
||||
}
|
||||
{
|
||||
hostname = "df-pw5";
|
||||
site_name = "bespin";
|
||||
publicKey = "XLOYoMXF+PO4jcgfSVAk+thh4VmWx0wzWnb0xs08G1s=";
|
||||
IP = "10.14.4.1";
|
||||
lan_endpoint = "192.168.5.130:33799";
|
||||
endpoint = "bitfrost.fiber.shirokumo.net:33734";
|
||||
}
|
||||
];
|
||||
|
||||
# Bootstrap IPs for Consul cluster,
|
||||
|
|
|
@ -7,3 +7,4 @@ piranha.polyno.me,2a01:cb05:8984:3c00:223:24ff:feb0:ea82 ssh-ed25519 AAAAC3NzaC1
|
|||
2001:910:1204:1::22 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMf/ioVSSb19Slu+HZLgKt4f1/XsL+K9uMxazSWb/+nQ
|
||||
2001:910:1204:1::21 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPXTUrXRFhudJBESCqjHCOttzqYPyIzpPOMkI8+SwLRx
|
||||
2a01:e0a:5e4:1d0:223:24ff:feaf:fdec ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAsZas74RT6lCZwuUOPR23nPdbSdpWORyAmRgjoiMVHK
|
||||
df-pw5.machine.deuxfleurs.fr ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIK/dJIxioCkfeehxeGiZR7qquYGoqEH/YrRJ/ukEcaLH
|
||||
|
|
20
cluster/staging/node/df-pw5.nix
Normal file
20
cluster/staging/node/df-pw5.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
# Configuration file local to this node
|
||||
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
# Use the systemd-boot EFI boot loader.
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
boot.loader.efi.efiSysMountPoint = "/boot";
|
||||
boot.loader.timeout = 20;
|
||||
|
||||
networking.hostName = "df-pw5";
|
||||
|
||||
deuxfleurs.network_interface = "eno1";
|
||||
deuxfleurs.lan_ip = "192.168.5.130";
|
||||
deuxfleurs.ipv6 = "2a02:a03f:6510:5102:223:24ff:feb0:e8a7";
|
||||
|
||||
deuxfleurs.cluster_ip = "10.14.4.1";
|
||||
deuxfleurs.is_raft_server = false;
|
||||
}
|
1
cluster/staging/node/df-pw5.site.nix
Symbolic link
1
cluster/staging/node/df-pw5.site.nix
Symbolic link
|
@ -0,0 +1 @@
|
|||
../site/bespin.nix
|
13
cluster/staging/site/bespin.nix
Normal file
13
cluster/staging/site/bespin.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
deuxfleurs.site_name = "bespin";
|
||||
deuxfleurs.lan_default_gateway = "192.168.5.254";
|
||||
deuxfleurs.ipv6_default_gateway = "2a02:a03f:6510:5102::1";
|
||||
deuxfleurs.lan_ip_prefix_length = 24;
|
||||
deuxfleurs.ipv6_prefix_length = 64;
|
||||
deuxfleurs.nameservers = [ "192.168.5.254" ];
|
||||
deuxfleurs.cname_target = "bespin.site.staging.deuxfleurs.org.";
|
||||
|
||||
networking.firewall.allowedTCPPorts = [ 80 443 ];
|
||||
}
|
|
@ -14,3 +14,6 @@ Host origan
|
|||
|
||||
Host piranha
|
||||
HostName piranha.polyno.me
|
||||
|
||||
Host df-pw5
|
||||
HostName df-pw5.machine.deuxfleurs.fr
|
||||
|
|
Loading…
Reference in a new issue