mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
6afb255d97
these changes were generated with nixq 0.0.2, by running nixq ">> lib.mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> Inherit >> mdDoc[remove]" --batchmode nixos/**.nix two mentions of the mdDoc function remain in nixos/, both of which are inside of comments. Since lib.mdDoc is already defined as just id, this commit is a no-op as far as Nix (and the built manual) is concerned.
51 lines
1.2 KiB
Nix
51 lines
1.2 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.heapster;
|
|
in {
|
|
options.services.heapster = {
|
|
enable = mkEnableOption "Heapster monitoring";
|
|
|
|
source = mkOption {
|
|
description = "Heapster metric source";
|
|
example = "kubernetes:https://kubernetes.default";
|
|
type = types.str;
|
|
};
|
|
|
|
sink = mkOption {
|
|
description = "Heapster metic sink";
|
|
example = "influxdb:http://localhost:8086";
|
|
type = types.str;
|
|
};
|
|
|
|
extraOpts = mkOption {
|
|
description = "Heapster extra options";
|
|
default = "";
|
|
type = types.separatedString " ";
|
|
};
|
|
|
|
package = mkPackageOption pkgs "heapster" { };
|
|
};
|
|
|
|
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";
|
|
};
|
|
};
|
|
|
|
users.users.heapster = {
|
|
isSystemUser = true;
|
|
group = "heapster";
|
|
description = "Heapster user";
|
|
};
|
|
users.groups.heapster = {};
|
|
};
|
|
}
|