summary refs log tree commit diff
path: root/pkgs/tools/security/kubei
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-04-26 10:56:22 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2021-04-26 10:56:22 +0200
commit47e5dcf33e872c5ab6c8dac64293a9c7dd8bd092 (patch)
treeb8ca9f14e15cba9be487831122e34cd17a651e6a /pkgs/tools/security/kubei
parent441f8ef8e4fc5542ad2a6d90d1dbadc0797b2341 (diff)
kubei: init at 1.0.11
Diffstat (limited to 'pkgs/tools/security/kubei')
-rw-r--r--pkgs/tools/security/kubei/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/tools/security/kubei/default.nix b/pkgs/tools/security/kubei/default.nix
new file mode 100644
index 0000000000000..1b1a8003b0943
--- /dev/null
+++ b/pkgs/tools/security/kubei/default.nix
@@ -0,0 +1,31 @@
+{ lib
+, buildGoModule
+, fetchFromGitHub
+}:
+
+buildGoModule rec {
+  pname = "kubei";
+  version = "1.0.11";
+
+  src = fetchFromGitHub {
+    owner = "Portshift";
+    repo = pname;
+    rev = version;
+    sha256 = "0n9kzlw7wlzkc3yhq68jgjhnvig817kz0q81ydkjxp4snwc1kvw8";
+  };
+
+  vendorSha256 = "0q0vkajn5n1aqb8wwdkvg8jv6j98l70g4hb399ickamhnirk69g4";
+
+  meta = with lib; {
+    description = "Kubernetes runtime scanner";
+    longDescription = ''
+      Kubei is a vulnerabilities scanning and CIS Docker benchmark tool that
+      allows users to get an accurate and immediate risk assessment of their
+      kubernetes clusters. Kubei scans all images that are being used in a
+      Kubernetes cluster, including images of application pods and system pods.
+    '';
+    homepage = "https://github.com/Portshift/kubei";
+    license = with licenses; [ asl20 ];
+    maintainers = with maintainers; [ fab ];
+  };
+}