forked from mirrors/nixpkgs
kubernetes module: enable leader elect by default
This commit is contained in:
parent
856ca7347f
commit
8e48fff268
|
@ -404,7 +404,7 @@ in {
|
|||
leaderElect = mkOption {
|
||||
description = "Whether to start leader election before executing main loop.";
|
||||
type = types.bool;
|
||||
default = false;
|
||||
default = true;
|
||||
};
|
||||
|
||||
kubeconfig = mkKubeConfigOptions "Kubernetes scheduler";
|
||||
|
@ -438,7 +438,7 @@ in {
|
|||
leaderElect = mkOption {
|
||||
description = "Whether to start leader election before executing main loop.";
|
||||
type = types.bool;
|
||||
default = false;
|
||||
default = true;
|
||||
};
|
||||
|
||||
serviceAccountKeyFile = mkOption {
|
||||
|
|
Loading…
Reference in a new issue