nixos/kubernetes: allow merging multiple definitions of extraOpts
This commit is contained in:
parent
c7695f95d9
commit
d43f88e3df
|
@ -145,7 +145,7 @@ in
|
||||||
extraOpts = mkOption {
|
extraOpts = mkOption {
|
||||||
description = "Kubernetes apiserver extra command line options.";
|
description = "Kubernetes apiserver extra command line options.";
|
||||||
default = "";
|
default = "";
|
||||||
type = str;
|
type = separatedString " ";
|
||||||
};
|
};
|
||||||
|
|
||||||
extraSANs = mkOption {
|
extraSANs = mkOption {
|
||||||
|
|
|
@ -38,7 +38,7 @@ in
|
||||||
extraOpts = mkOption {
|
extraOpts = mkOption {
|
||||||
description = "Kubernetes controller manager extra command line options.";
|
description = "Kubernetes controller manager extra command line options.";
|
||||||
default = "";
|
default = "";
|
||||||
type = str;
|
type = separatedString " ";
|
||||||
};
|
};
|
||||||
|
|
||||||
featureGates = mkOption {
|
featureGates = mkOption {
|
||||||
|
|
|
@ -142,7 +142,7 @@ in
|
||||||
extraOpts = mkOption {
|
extraOpts = mkOption {
|
||||||
description = "Kubernetes kubelet extra command line options.";
|
description = "Kubernetes kubelet extra command line options.";
|
||||||
default = "";
|
default = "";
|
||||||
type = str;
|
type = separatedString " ";
|
||||||
};
|
};
|
||||||
|
|
||||||
featureGates = mkOption {
|
featureGates = mkOption {
|
||||||
|
|
|
@ -25,7 +25,7 @@ in
|
||||||
extraOpts = mkOption {
|
extraOpts = mkOption {
|
||||||
description = "Kubernetes proxy extra command line options.";
|
description = "Kubernetes proxy extra command line options.";
|
||||||
default = "";
|
default = "";
|
||||||
type = str;
|
type = separatedString " ";
|
||||||
};
|
};
|
||||||
|
|
||||||
featureGates = mkOption {
|
featureGates = mkOption {
|
||||||
|
|
|
@ -21,7 +21,7 @@ in
|
||||||
extraOpts = mkOption {
|
extraOpts = mkOption {
|
||||||
description = "Kubernetes scheduler extra command line options.";
|
description = "Kubernetes scheduler extra command line options.";
|
||||||
default = "";
|
default = "";
|
||||||
type = str;
|
type = separatedString " ";
|
||||||
};
|
};
|
||||||
|
|
||||||
featureGates = mkOption {
|
featureGates = mkOption {
|
||||||
|
|
Loading…
Reference in New Issue