Some networking fixes.

This commit is contained in:
Tom Alexander
2025-12-18 22:28:03 -05:00
parent a5e2eaee80
commit 9608d33557
33 changed files with 1806 additions and 1722 deletions

View File

@@ -18,10 +18,27 @@
};
config = lib.mkIf config.me.worker_node.enable {
me.cilium.enable = true;
me.containerd.enable = true;
me.firewall.enable = true;
# me.kube-proxy.enable = true;
me.kubelet.enable = true;
me.kubernetes.enable = true;
networking.firewall.allowedTCPPortRanges = [
{
# NodePort services
from = 30000;
to = 32767;
}
];
networking.firewall.allowedUDPPortRanges = [
{
# NodePort services
from = 30000;
to = 32767;
}
];
};
}