2021-11-10 09:04:07 +00:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
, installShellFiles
|
|
|
|
}:
|
2021-09-03 18:23:07 +01:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "kubescape";
|
2021-11-12 21:57:25 +00:00
|
|
|
version = "1.0.131";
|
2021-09-03 18:23:07 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "armosec";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-11-12 21:57:25 +00:00
|
|
|
sha256 = "sha256-DcReo4pTdI8ssWH1IqD8gDUm4jQ0jBBJ+ltxSpdkxQE=";
|
2021-09-03 18:23:07 +01:00
|
|
|
};
|
|
|
|
|
2021-11-10 09:04:07 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
installShellFiles
|
|
|
|
];
|
|
|
|
|
2021-11-12 21:57:25 +00:00
|
|
|
vendorSha256 = "sha256-SxJnYJyKFed1c+zgeeXQQhsKHlaDevJGMwqA5gPef3s=";
|
2021-09-03 18:23:07 +01:00
|
|
|
|
2021-11-10 09:04:07 +00:00
|
|
|
ldflags = [
|
|
|
|
"-s"
|
|
|
|
"-w"
|
|
|
|
"-X github.com/armosec/kubescape/clihandler/cmd.BuildNumber=v${version}"
|
|
|
|
];
|
2021-10-26 14:27:47 +01:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
# Running kubescape to generate completions outputs error warnings
|
|
|
|
# but does not crash and completes successfully
|
|
|
|
# https://github.com/armosec/kubescape/issues/200
|
|
|
|
installShellCompletion --cmd kubescape \
|
|
|
|
--bash <($out/bin/kubescape completion bash) \
|
|
|
|
--fish <($out/bin/kubescape completion fish) \
|
|
|
|
--zsh <($out/bin/kubescape completion zsh)
|
|
|
|
'';
|
2021-09-03 18:23:07 +01:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Tool for testing if Kubernetes is deployed securely";
|
|
|
|
homepage = "https://github.com/armosec/kubescape";
|
2021-10-26 14:27:47 +01:00
|
|
|
changelog = "https://github.com/armosec/kubescape/releases/tag/v${version}";
|
|
|
|
longDescription = ''
|
|
|
|
Kubescape is the first open-source tool for testing if Kubernetes is
|
|
|
|
deployed securely according to multiple frameworks: regulatory, customized
|
|
|
|
company policies and DevSecOps best practices, such as the NSA-CISA and
|
|
|
|
the MITRE ATT&CK®.
|
|
|
|
Kubescape scans K8s clusters, YAML files, and HELM charts, and detect
|
|
|
|
misconfigurations and software vulnerabilities at early stages of the
|
|
|
|
CI/CD pipeline and provides a risk score instantly and risk trends over
|
|
|
|
time. Kubescape integrates natively with other DevOps tools, including
|
|
|
|
Jenkins, CircleCI and Github workflows.
|
|
|
|
'';
|
2021-09-03 18:23:07 +01:00
|
|
|
license = licenses.asl20;
|
2021-10-26 14:27:47 +01:00
|
|
|
maintainers = with maintainers; [ fab jk ];
|
2021-09-03 18:23:07 +01:00
|
|
|
};
|
|
|
|
}
|