fix - rke2 metallb open

This commit is contained in:
Evan Reichard 2025-04-08 10:03:24 -04:00
parent c3a947ff02
commit b5d767ccee
2 changed files with 7 additions and 7 deletions

View File

@ -1,4 +1,4 @@
{ pkgs, lib, config, namespace, ... }: { lib, config, namespace, ... }:
let let
inherit (lib.${namespace}) enabled; inherit (lib.${namespace}) enabled;
in in
@ -12,7 +12,6 @@ in
}; };
services = { services = {
ssh-agent = enabled;
# TODO # TODO
# sops = { # sops = {
# enable = true; # enable = true;
@ -25,11 +24,6 @@ in
graphical = { graphical = {
ghostty = enabled; ghostty = enabled;
ghidra = enabled; ghidra = enabled;
browsers.firefox = {
enable = true;
gpuAcceleration = true;
hardwareDecoding = true;
};
}; };
terminal = { terminal = {

View File

@ -27,6 +27,9 @@ in
2381 # etcd Metrics Port 2381 # etcd Metrics Port
10250 # kubelet metrics 10250 # kubelet metrics
9099 # Canal CNI health checks 9099 # Canal CNI health checks
# MetalLB
7946 # memberlist
]; ];
networking.firewall.allowedUDPPorts = mkIf cfg.openFirewall [ networking.firewall.allowedUDPPorts = mkIf cfg.openFirewall [
@ -34,6 +37,9 @@ in
8472 # Canal CNI with VXLAN 8472 # Canal CNI with VXLAN
# 51820 # Canal CNI with WireGuard IPv4 (if using encryption) # 51820 # Canal CNI with WireGuard IPv4 (if using encryption)
# 51821 # Canal CNI with WireGuard IPv6 (if using encryption) # 51821 # Canal CNI with WireGuard IPv6 (if using encryption)
# MetalLB
7946 # memberlist
]; ];
}; };
} }