Add cilium bootstrap.

This commit is contained in:
Tom Alexander
2025-12-16 21:48:44 -05:00
parent ed77372b91
commit a2899d38a2
24 changed files with 1699 additions and 8 deletions

View File

@@ -29,9 +29,9 @@ in
wantedBy = [ "kubernetes.target" ];
after = [ "containerd.service" ];
requires = [ "containerd.service" ];
# path = with pkgs; [
# zfs
# ];
path = with pkgs; [
util-linux
];
unitConfig.DefaultDependencies = "no";
serviceConfig = {
ExecStart = (

View File

@@ -20,7 +20,7 @@
config = lib.mkIf config.me.worker_node.enable {
me.containerd.enable = true;
me.firewall.enable = true;
me.kube-proxy.enable = true;
# me.kube-proxy.enable = true;
me.kubelet.enable = true;
me.kubernetes.enable = true;
};