nixpkgs/nixos/doc/manual
Christina Sørensen 32ca66f3ed
nixos/kubernetes: refactor feature gates to attrsOf bool, making it possible to disable featureGates
This is a breaking change, requiring users of `featureGates` to change
from a `listOf str` to `attrsOf bool`.

Before:
```nix
featureGates = [ "EphemeralContainers" ];
extraOpts = pkgs.lib.concatStringsSep " " (
[
  "--container-runtime=remote"
  ''--feature-gates="CSIMigration=false"''
});
```

After:
```nix
featureGates = {EphemeralContainers = true; CSIMigration=false;};
```

This is much nicer, and sets us up for later work of migrating to
configuration files for other services, like e.g. has been happening
with kubelet (see: #290119).

Signed-off-by: Christina Sørensen <christina@cafkafk.com>
2024-08-01 07:51:34 +02:00
..
administration Merge pull request #300705 from JulienMalka/official-wiki 2024-04-01 18:59:20 +02:00
configuration treewide: fix doc typos 2024-07-26 00:55:13 +02:00
development treewide: fix doc typos 2024-07-26 00:55:13 +02:00
installation nixos/doc: remove key management setting in wpa_cli examples 2024-07-05 11:05:59 +02:00
release-notes nixos/kubernetes: refactor feature gates to attrsOf bool, making it possible to disable featureGates 2024-08-01 07:51:34 +02:00
common.nix nixos manual: extract some build paths 2023-07-25 17:03:12 +07:00
contributing-to-this-manual.chapter.md doc: Update manuals bespoke syntax 2024-01-25 16:33:35 +01:00
default.nix doc: Use substitute --replace-fail in manuals 2024-05-02 23:19:15 +02:00
manual.md
nixos-options.md
preface.md manual: fix matrix room link (#231523) 2023-05-12 18:55:19 -04:00
README.md
shell.nix web-devmode: call as package 2024-07-26 13:43:59 -07:00