This commit is contained in:
BOTAlex 2026-04-02 19:42:59 +02:00
parent f2bb1de7d8
commit a9551f7ba0
6 changed files with 39 additions and 4 deletions

View file

@ -10,7 +10,12 @@ in
networking.firewall.enable = false;
# packages for administration tasks
environment.systemPackages = with pkgs; [ kompose kubectl kubernetes ];
environment.systemPackages = with pkgs; [
kompose
kubectl
kubernetes
kubernetes-helm
];
services.kubernetes =
let
@ -33,4 +38,3 @@ in
kubelet.extraOpts = "--fail-swap-on=false";
};
}