nixpkgs/nixos/modules/services/monitoring/heapster.nix
h7x4 0a37316d6c
treewide: use mkPackageOption
This commit replaces a lot of usages of `mkOption` with the package
type, to be `mkPackageOption`, in order to reduce the amount of code.
2023-11-27 01:28:36 +01:00

51 lines
1.2 KiB
Nix

{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.heapster;
in {
options.services.heapster = {
enable = mkEnableOption (lib.mdDoc "Heapster monitoring");
source = mkOption {
description = lib.mdDoc "Heapster metric source";
example = "kubernetes:https://kubernetes.default";
type = types.str;
};
sink = mkOption {
description = lib.mdDoc "Heapster metic sink";
example = "influxdb:http://localhost:8086";
type = types.str;
};
extraOpts = mkOption {
description = lib.mdDoc "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 = {};
};
}