mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 13:40:28 +03:00
nixos/kubernetes: add extraConfig to kubelet config (#338526)
This commit is contained in:
commit
8a508485c4
2 changed files with 9 additions and 0 deletions
|
@ -66,6 +66,7 @@ let
|
|||
// lib.optionalAttrs (cfg.clusterDomain != "") { clusterDomain = cfg.clusterDomain; }
|
||||
// lib.optionalAttrs (cfg.clusterDns != []) { clusterDNS = cfg.clusterDns; }
|
||||
// lib.optionalAttrs (cfg.featureGates != {}) { featureGates = cfg.featureGates; }
|
||||
// lib.optionalAttrs (cfg.extraConfig != {}) cfg.extraConfig
|
||||
));
|
||||
|
||||
manifestPath = "kubernetes/manifests";
|
||||
|
@ -184,6 +185,12 @@ in
|
|||
type = separatedString " ";
|
||||
};
|
||||
|
||||
extraConfig = mkOption {
|
||||
description = "Kubernetes kubelet extra configuration file entries.";
|
||||
default = {};
|
||||
type = attrsOf attrs;
|
||||
};
|
||||
|
||||
featureGates = mkOption {
|
||||
description = "Attribute set of feature gate";
|
||||
default = top.featureGates;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue