2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, buildGoModule, fetchFromGitHub, systemd }:
|
2020-03-27 17:58:07 +00:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "node-problem-detector";
|
2022-09-10 01:51:01 +00:00
|
|
|
version = "0.8.12";
|
2020-03-27 17:58:07 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "kubernetes";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2022-09-10 01:51:01 +00:00
|
|
|
sha256 = "sha256-FLOkGeGl2tpLCyJxiGubzo+d2fieF/aNfhNJ2nzOtfw=";
|
2020-03-27 17:58:07 +00:00
|
|
|
};
|
|
|
|
|
2020-05-01 01:59:00 +00:00
|
|
|
vendorSha256 = null;
|
2020-03-27 17:58:07 +00:00
|
|
|
|
2020-08-04 00:26:27 +00:00
|
|
|
doCheck = false;
|
|
|
|
|
2020-03-27 17:58:07 +00:00
|
|
|
# Optionally, a log counter binary can be created to parse journald logs.
|
|
|
|
# The binary is dynamically linked against systemd libraries, making it a
|
|
|
|
# Linux-only feature. See 'ENABLE_JOURNALD' upstream:
|
|
|
|
# https://github.com/kubernetes/node-problem-detector/blob/master/Makefile
|
|
|
|
subPackages = [ "cmd/nodeproblemdetector" ] ++
|
2021-01-15 05:42:41 +00:00
|
|
|
lib.optionals stdenv.isLinux [ "cmd/logcounter" ];
|
2020-03-27 17:58:07 +00:00
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
export CGO_ENABLED=${if stdenv.isLinux then "1" else "0"}
|
|
|
|
'';
|
|
|
|
|
2021-01-15 05:42:41 +00:00
|
|
|
buildInputs = lib.optionals stdenv.isLinux [ systemd ];
|
2020-03-27 17:58:07 +00:00
|
|
|
|
2021-08-07 04:57:59 +00:00
|
|
|
tags = lib.optionals stdenv.isLinux [ "journald" ];
|
2020-03-27 17:58:07 +00:00
|
|
|
|
2021-08-07 04:57:59 +00:00
|
|
|
ldflags = [
|
2020-03-27 17:58:07 +00:00
|
|
|
"-X k8s.io/${pname}/pkg/version.version=v${version}"
|
|
|
|
];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-03-27 17:58:07 +00:00
|
|
|
description = "Various problem detectors running on the Kubernetes nodes";
|
|
|
|
homepage = "https://github.com/kubernetes/node-problem-detector";
|
2020-06-06 13:48:34 +00:00
|
|
|
changelog = "https://github.com/kubernetes/node-problem-detector/releases/tag/v${version}";
|
2020-03-27 17:58:07 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ lbpdt ];
|
|
|
|
};
|
2020-06-06 13:48:34 +00:00
|
|
|
}
|