2022-07-22 08:13:20 +02:00
|
|
|
{ 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; };
|
2022-07-22 08:50:25 +02:00
|
|
|
# Run a multi-node k3s cluster and verify pod networking works across nodes
|
|
|
|
multi-node = import ./multi-node.nix { inherit system pkgs; };
|
2022-07-22 08:13:20 +02:00
|
|
|
}
|