2015-11-16 14:26:07 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.services.heapster;
|
|
|
|
in {
|
|
|
|
options.services.heapster = {
|
|
|
|
enable = mkOption {
|
|
|
|
description = "Whether to enable heapster monitoring";
|
|
|
|
default = false;
|
|
|
|
type = types.bool;
|
|
|
|
};
|
|
|
|
|
|
|
|
source = mkOption {
|
|
|
|
description = "Heapster metric source";
|
|
|
|
example = "kubernetes:https://kubernetes.default";
|
2019-08-08 21:48:27 +01:00
|
|
|
type = types.str;
|
2015-11-16 14:26:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
sink = mkOption {
|
|
|
|
description = "Heapster metic sink";
|
|
|
|
example = "influxdb:http://localhost:8086";
|
2019-08-08 21:48:27 +01:00
|
|
|
type = types.str;
|
2015-11-16 14:26:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
extraOpts = mkOption {
|
|
|
|
description = "Heapster extra options";
|
|
|
|
default = "";
|
2019-08-08 21:48:27 +01:00
|
|
|
type = types.separatedString " ";
|
2015-11-16 14:26:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
package = mkOption {
|
|
|
|
description = "Package to use by heapster";
|
|
|
|
default = pkgs.heapster;
|
2016-01-17 18:34:55 +00:00
|
|
|
defaultText = "pkgs.heapster";
|
2015-11-16 14:26:07 +00:00
|
|
|
type = types.package;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
systemd.services.heapster = {
|
|
|
|
wantedBy = ["multi-user.target"];
|
|
|
|
after = ["cadvisor.service" "kube-apiserver.service"];
|
|
|
|
|
|
|
|
serviceConfig = {
|
|
|
|
ExecStart = "${cfg.package}/bin/heapster --source=${cfg.source} --sink=${cfg.sink} ${cfg.extraOpts}";
|
|
|
|
User = "heapster";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-02-10 16:55:46 +00:00
|
|
|
users.users.heapster = {
|
2015-11-16 14:26:07 +00:00
|
|
|
uid = config.ids.uids.heapster;
|
|
|
|
description = "Heapster user";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|