nixos/k3s: replace deprecated extra flag in usage example

The previously used `--kubelet-arg=v=4` extra flag causes k3s to crash
with `Error: initialize logging: the logging configuration should not be
changed after setting it once`. Replace it with the working `--debug`
flag.
This commit is contained in:
Robert Rose 2024-09-18 18:59:52 +02:00
parent 6eb9519b42
commit 310f0ae4d5

View File

@ -15,7 +15,7 @@
services.k3s.enable = true;
services.k3s.role = "server";
services.k3s.extraFlags = toString [
# "--kubelet-arg=v=4" # Optionally add additional args to k3s
# "--debug" # Optionally add additional args to k3s
];
}
```