Merge pull request #144559 from j4m3s-s/add-kubectl-evict-pod

authored by

Artturi and committed by
GitHub
6522ab68 5f012c08

+24
+22
pkgs/applications/networking/cluster/kubectl-evict-pod/default.nix
··· 1 + { lib, buildGoModule, fetchFromGitHub }: 2 + 3 + buildGoModule rec { 4 + pname = "kubectl-evict-pod"; 5 + version = "0.0.10"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "rajatjindal"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "sha256-Z4fJzU317p7K+klcDQAukXAfZOpHd3PlH5fKO0PgKHA="; 12 + }; 13 + 14 + vendorSha256 = "sha256-8VTrywlzrzoBEi/xOqkwhGW/R2B2oGqgh01Gv9FcW80="; 15 + 16 + meta = with lib; { 17 + description = "This plugin evicts the given pod and is useful for testing pod disruption budget rules"; 18 + homepage = "https://github.com/rajatjindal/kubectl-evict-pod"; 19 + license = licenses.asl20; 20 + maintainers = [ maintainers.j4m3s ]; 21 + }; 22 + }
+2
pkgs/top-level/all-packages.nix
··· 26122 26122 26123 26123 kube-score = callPackage ../applications/networking/cluster/kube-score { }; 26124 26124 26125 + kubectl-evict-pod = callPackage ../applications/networking/cluster/kubectl-evict-pod { }; 26126 + 26125 26127 kubeval = callPackage ../applications/networking/cluster/kubeval { }; 26126 26128 26127 26129 kubeval-schema = callPackage ../applications/networking/cluster/kubeval/schema.nix { };