Merge pull request #181313 from bryanasdev000/kyverno
kyverno: init at 1.7.0
This commit is contained in:
commit
070314b62d
2 changed files with 51 additions and 0 deletions
49
pkgs/applications/networking/cluster/kyverno/default.nix
Normal file
49
pkgs/applications/networking/cluster/kyverno/default.nix
Normal file
|
@ -0,0 +1,49 @@
|
|||
{ lib, buildGoModule, fetchFromGitHub, installShellFiles, testers, kyverno }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "kyverno";
|
||||
version = "1.7.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "kyverno";
|
||||
repo = "kyverno";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-MHEVGJNuZozug0l+V1bRIykOe5PGA3aU3wfBV2TH/Lo=";
|
||||
};
|
||||
|
||||
ldflags = [
|
||||
"-s" "-w"
|
||||
"-X github.com/kyverno/kyverno/pkg/version.BuildVersion=v${version}"
|
||||
"-X github.com/kyverno/kyverno/pkg/version.BuildHash=${version}"
|
||||
"-X github.com/kyverno/kyverno/pkg/version.BuildTime=1970-01-01_00:00:00"
|
||||
];
|
||||
|
||||
vendorSha256 = "sha256-DUe1cy6PgI5qiB9BpDJxnTlBFuy/BmyqCoxRo7Ums1I=";
|
||||
|
||||
subPackages = [ "cmd/cli/kubectl-kyverno" ];
|
||||
|
||||
nativeBuildInputs = [ installShellFiles ];
|
||||
postInstall = ''
|
||||
# we have no integration between krew and kubectl
|
||||
# so better rename binary to kyverno and use as a standalone
|
||||
mv $out/bin/kubectl-kyverno $out/bin/kyverno
|
||||
installShellCompletion --cmd kyverno \
|
||||
--bash <($out/bin/kyverno completion bash) \
|
||||
--zsh <($out/bin/kyverno completion zsh) \
|
||||
--fish <($out/bin/kyverno completion fish)
|
||||
'';
|
||||
|
||||
passthru.tests.version = testers.testVersion {
|
||||
package = kyverno;
|
||||
command = "kyverno version";
|
||||
inherit version;
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "Kubernetes Native Policy Management";
|
||||
homepage = "https://kyverno.io/";
|
||||
changelog = "https://github.com/kyverno/kyverno/releases/tag/v${version}";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ bryanasdev000 ];
|
||||
};
|
||||
}
|
|
@ -7777,6 +7777,8 @@ with pkgs;
|
|||
|
||||
kytea = callPackage ../tools/text/kytea { };
|
||||
|
||||
kyverno = callPackage ../applications/networking/cluster/kyverno { };
|
||||
|
||||
k6 = callPackage ../development/tools/k6 { };
|
||||
|
||||
l2md = callPackage ../tools/text/l2md { };
|
||||
|
|
Loading…
Reference in a new issue