Skip to content

Commit

Permalink
kube-capacity: init at 0.5.1 (#99344)
Browse files Browse the repository at this point in the history
Signed-off-by: Bryan A. S <bryanasdev000@gmail.com>
  • Loading branch information
bryanasdev000 committed Feb 16, 2021
1 parent b02948e commit 1e3b1f8
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
24 changes: 24 additions & 0 deletions pkgs/applications/networking/cluster/kube-capacity/default.nix
@@ -0,0 +1,24 @@
{ stdenv, lib, buildGoModule, fetchFromGitHub }:

buildGoModule rec {
pname = "kube-capacity";
version = "0.5.1";

src = fetchFromGitHub {
rev = "v${version}";
owner = "robscott";
repo = pname;
sha256 = "127583hmpj04y522wir76a39frm6zg9z7mb4ny5lxxjqhn0q0cd5";
};

vendorSha256 = "sha256-EgLWZs282IV1euCUCc5ucf267E2Z7GF9SgoImiGvuVM=";

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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -23237,6 +23237,8 @@ in

popeye = callPackage ../applications/networking/cluster/popeye { };

kube-capacity = callPackage ../applications/networking/cluster/kube-capacity { };

fluxctl = callPackage ../applications/networking/cluster/fluxctl { };

fluxcd = callPackage ../applications/networking/cluster/fluxcd { };
Expand Down

0 comments on commit 1e3b1f8

Please sign in to comment.