kuttl: init at version 0.9.0
This commit is contained in:
parent
a3dda724d3
commit
2d3b93f4ee
2 changed files with 35 additions and 0 deletions
31
pkgs/applications/networking/cluster/kuttl/default.nix
Normal file
31
pkgs/applications/networking/cluster/kuttl/default.nix
Normal file
|
@ -0,0 +1,31 @@
|
|||
{ lib, buildGoModule, fetchFromGitHub}:
|
||||
|
||||
buildGoModule rec {
|
||||
name = "kuttl";
|
||||
pname = "kuttl";
|
||||
version = "0.9.0";
|
||||
cli = "kubectl-kuttl";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "kudobuilder";
|
||||
repo = "kuttl";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256:1cji0py2340mvcpplwq3licdkzjx7q5f27fdjjxvbhrgksnyw6hs";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256:1shra42ifa2knxp58fj5hn074jg89f3nqdqk4rqbp3ybir84ahsd";
|
||||
|
||||
subPackages = [ "cmd/kubectl-kuttl" ];
|
||||
|
||||
buildFlagsArray = ''
|
||||
-ldflags=-s -w
|
||||
-X github.com/kudobuilder/kuttl/pkg/version.gitVersion=${version}
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "The KUbernetes Test TooL (KUTTL) provides a declarative approach to testing production-grade Kubernetes operators";
|
||||
homepage = "https://github.com/kudobuilder/kuttl";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ diegolelis ];
|
||||
};
|
||||
}
|
|
@ -23702,6 +23702,10 @@ in
|
|||
|
||||
kubectl = callPackage ../applications/networking/cluster/kubectl { };
|
||||
|
||||
kuttl = callPackage ../applications/networking/cluster/kuttl {
|
||||
buildGoModule = buildGo115Module;
|
||||
};
|
||||
|
||||
kubectl-doctor = callPackage ../applications/networking/cluster/kubectl-doctor { };
|
||||
|
||||
kubectl-example = callPackage ../applications/networking/cluster/kubectl-example { };
|
||||
|
|
Loading…
Reference in a new issue