refactor(netbird): migrate to single netbird-server container

This commit is contained in:
2026-07-21 19:06:19 -05:00
parent 9b5af62a47
commit d2a6887834
10 changed files with 178 additions and 225 deletions
+5 -9
View File
@@ -1,13 +1,11 @@
{
networking.firewall.allowedTCPPorts = [ 6443 80 443 10000 33073 ];
networking.firewall.allowedTCPPorts = [ 6443 80 443 33073 ];
networking.firewall.allowedUDPPorts = [ 3478 ];
networking.firewall.allowedUDPPortRanges = [
{ from = 49152; to = 65535; }
];
services.k3s = {
enable = true;
role = "server";
extraFlags = "--write-kubeconfig-mode 644";
manifests = {
traefik-namespace = { source = ./traefik/namespace.yaml; };
traefik-rbac = { source = ./traefik/rbac.yaml; };
@@ -15,11 +13,9 @@
traefik-deployment = { source = ./traefik/deployment.yaml; };
traefik-service = { source = ./traefik/service.yaml; };
netbird-namespace = { source = ./netbird/namespace.yaml; };
netbird-secrets = { source = ./netbird/secrets.yaml; };
netbird-coturn = { source = ./netbird/coturn.yaml; };
netbird-signal = { source = ./netbird/signal.yaml; };
netbird-management = { source = ./netbird/management.yaml; };
netbird-relay = { source = ./netbird/relay.yaml; };
netbird-config = { source = ./netbird/config.yaml; };
netbird-server = { source = ./netbird/server.yaml; };
netbird-dashboard = { source = ./netbird/dashboard.yaml; };
netbird-ingress = { source = ./netbird/ingress.yaml; };
};
};