about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorzowoq <59103226+zowoq@users.noreply.github.com>2023-03-29 13:33:47 +1000
committerzowoq <59103226+zowoq@users.noreply.github.com>2023-03-30 14:30:30 +1000
commit0dff2d8a48208d418f08f5ed5f96d502e93af599 (patch)
tree6783e6fc03e54df0ee7e39ff99fa5f3bebe8d0ad /pkgs/applications
parent29b1dacd2be29a9013e8d6bcea9525db50f06d3d (diff)
containerd: add kubernetes to passthru.tests
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/virtualization/containerd/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/virtualization/containerd/default.nix b/pkgs/applications/virtualization/containerd/default.nix
index c5d1a4d68857c..dced2dca53f70 100644
--- a/pkgs/applications/virtualization/containerd/default.nix
+++ b/pkgs/applications/virtualization/containerd/default.nix
@@ -6,6 +6,7 @@
 , installShellFiles
 , util-linux
 , nixosTests
+, kubernetes
 }:
 
 buildGoModule rec {
@@ -42,7 +43,7 @@ buildGoModule rec {
     runHook postInstall
   '';
 
-  passthru.tests = { inherit (nixosTests) docker; };
+  passthru.tests = { inherit (nixosTests) docker; } // kubernetes.tests;
 
   meta = with lib; {
     changelog = "https://github.com/containerd/containerd/releases/tag/${src.rev}";