summary refs log tree commit diff
path: root/nixos/tests/k3s/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/tests/k3s/default.nix')
-rw-r--r--nixos/tests/k3s/default.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/nixos/tests/k3s/default.nix b/nixos/tests/k3s/default.nix
new file mode 100644
index 00000000000..07d93c41c7a
--- /dev/null
+++ b/nixos/tests/k3s/default.nix
@@ -0,0 +1,9 @@
+{ system ? builtins.currentSystem
+, pkgs ? import ../../.. { inherit system; }
+}:
+{
+  # Run a single node k3s cluster and verify a pod can run
+  single-node = import ./single-node.nix { inherit system pkgs; };
+  # Run a multi-node k3s cluster and verify pod networking works across nodes
+  multi-node = import ./multi-node.nix { inherit system pkgs; };
+}