mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
Merge pull request #11061 from offlinehacker/nixos/heapster/add
heapster module: init
This commit is contained in:
commit
0667fe29c9
@ -235,6 +235,7 @@
|
||||
kibana = 211;
|
||||
xtreemfs = 212;
|
||||
calibre-server = 213;
|
||||
heapster = 214;
|
||||
|
||||
# When adding a uid, make sure it doesn't match an existing gid. And don't use uids above 399!
|
||||
|
||||
|
@ -238,6 +238,7 @@
|
||||
./services/monitoring/dd-agent.nix
|
||||
./services/monitoring/grafana.nix
|
||||
./services/monitoring/graphite.nix
|
||||
./services/monitoring/heapster.nix
|
||||
./services/monitoring/monit.nix
|
||||
./services/monitoring/munin.nix
|
||||
./services/monitoring/nagios.nix
|
||||
|
57
nixos/modules/services/monitoring/heapster.nix
Normal file
57
nixos/modules/services/monitoring/heapster.nix
Normal file
@ -0,0 +1,57 @@
|
||||
{ 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";
|
||||
type = types.string;
|
||||
};
|
||||
|
||||
sink = mkOption {
|
||||
description = "Heapster metic sink";
|
||||
example = "influxdb:http://localhost:8086";
|
||||
type = types.string;
|
||||
};
|
||||
|
||||
extraOpts = mkOption {
|
||||
description = "Heapster extra options";
|
||||
default = "";
|
||||
type = types.string;
|
||||
};
|
||||
|
||||
package = mkOption {
|
||||
description = "Package to use by heapster";
|
||||
default = pkgs.heapster;
|
||||
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";
|
||||
};
|
||||
};
|
||||
|
||||
users.extraUsers = singleton {
|
||||
name = "heapster";
|
||||
uid = config.ids.uids.heapster;
|
||||
description = "Heapster user";
|
||||
};
|
||||
};
|
||||
}
|
27
pkgs/servers/monitoring/heapster/default.nix
Normal file
27
pkgs/servers/monitoring/heapster/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ lib, goPackages, fetchFromGitHub, docker }:
|
||||
|
||||
goPackages.buildGoPackage rec {
|
||||
rev = "3057a2c07061c8d9ffaf77e5442ffd7512ac0133";
|
||||
name = "heapster-${lib.strings.substring 0 7 rev}";
|
||||
goPackagePath = "k8s.io/heapster";
|
||||
subPackages = [ "./" ];
|
||||
|
||||
src = fetchFromGitHub {
|
||||
inherit rev;
|
||||
owner = "kubernetes";
|
||||
repo = "heapster";
|
||||
sha256 = "057z9imgd2gvcbvahja3i26jzgm33dmfaxraakmcr4a2xfhj50hq";
|
||||
};
|
||||
|
||||
preBuild = ''
|
||||
export GOPATH=$GOPATH:$NIX_BUILD_TOP/go/src/${goPackagePath}/Godeps/_workspace
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Compute Resource Usage Analysis and Monitoring of Container Clusters";
|
||||
license = licenses.asl20;
|
||||
homepage = https://github.com/kubernetes/heapster;
|
||||
maintainers = with maintainers; [ offline ];
|
||||
platforms = with platforms; docker.meta.platforms;
|
||||
};
|
||||
}
|
@ -9156,6 +9156,8 @@ let
|
||||
|
||||
groovebasin = callPackage ../applications/audio/groovebasin { };
|
||||
|
||||
heapster = (callPackage ../servers/monitoring/heapster { }).bin // { outputs = ["bin"]; };
|
||||
|
||||
hbase = callPackage ../servers/hbase {};
|
||||
|
||||
ircdHybrid = callPackage ../servers/irc/ircd-hybrid { };
|
||||
|
Loading…
Reference in New Issue
Block a user