fix: add kubectl, update charts

This commit is contained in:
2025-12-22 19:01:27 -08:00
parent 01294f3b8c
commit 560609426f
12 changed files with 38 additions and 61 deletions

View File

@@ -8,13 +8,14 @@
{
imports = [
./disk-config.nix
];
boot.loader.grub = {
enable = true;
efiSupport = true;
efiInstallAsRemovable = true;
device = "/dev/nvme0n1";
device = "/dev/vda";
};
networking.hostName = meta.hostname;
@@ -31,10 +32,10 @@
role = "server";
tokenFile = /var/lib/rancher/k3s/server/token;
clusterInit = true;
extraFlags = toString ([
extraFlags = toString [
"--write-kubeconfig-mode \"0644\""
"--disable local-storage"
]);
# "--disable local-storage"
];
};
services.openiscsi = {