about summary refs log tree commit diff
path: root/nixos/tests/k3s/default.nix
blob: 07d93c41c7a6805f6f0e7801acf2d8b27f8fea47 (plain) (blame)
1
2
3
4
5
6
7
8
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; };
}