2021-03-04 12:54:50 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2021-02-16 06:29:44 +00:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "kube-capacity";
|
2021-08-27 08:13:24 +01:00
|
|
|
version = "0.6.1";
|
2021-02-16 06:29:44 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
rev = "v${version}";
|
|
|
|
owner = "robscott";
|
|
|
|
repo = pname;
|
2021-08-27 08:13:24 +01:00
|
|
|
sha256 = "sha256-4UdNmuxJsPekA0y4mP302AYIFkG3ee3n99Redb/rPHw=";
|
2021-02-16 06:29:44 +00:00
|
|
|
};
|
|
|
|
|
2021-08-27 08:13:24 +01:00
|
|
|
vendorSha256 = "sha256-PQlOuBqn+b7fO9eHgtTAKxo3YdWmgbxx2JomklttCrM=";
|
2021-02-16 06:29:44 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description =
|
|
|
|
"A simple CLI that provides an overview of the resource requests, limits, and utilization in a Kubernetes cluster";
|
|
|
|
homepage = "https://github.com/robscott/kube-capacity";
|
|
|
|
changelog = "https://github.com/robscott/kube-capacity/releases/tag/v${version}";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = [ maintainers.bryanasdev000 ];
|
|
|
|
};
|
|
|
|
}
|