Commit 310f0ae4 authored by Robert Rose's avatar Robert Rose
Browse files

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.
parent 6eb9519b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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
  ];
}
```