nixpkgs/nixos/doc/manual/release-notes
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
..
release-notes.md 24.05 is Vicuña 2024-05-22 18:15:34 +02:00
rl-1310.section.md
rl-1404.section.md
rl-1412.section.md
rl-1509.section.md
rl-1603.section.md
rl-1609.section.md
rl-1703.section.md
rl-1709.section.md
rl-1803.section.md
rl-1809.section.md
rl-1903.section.md
rl-1909.section.md
rl-2003.section.md
rl-2009.section.md
rl-2105.section.md
rl-2111.section.md nixos/pantheon-tweaks: remove 2024-05-22 21:58:16 +08:00
rl-2205.section.md treewide: fix doc typos 2024-07-26 00:55:13 +02:00
rl-2211.section.md
rl-2305.section.md
rl-2311.section.md
rl-2405.section.md treewide: fix doc typos 2024-07-26 00:55:13 +02:00
rl-2411.section.md nixos/kubernetes: refactor feature gates to attrsOf bool, making it possible to disable featureGates 2024-08-01 07:51:34 +02:00