python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / nixos / tests / k3s / default.nix
blob07d93c41c7a6805f6f0e7801acf2d8b27f8fea47
1 { system ? builtins.currentSystem
2 , pkgs ? import ../../.. { inherit system; }
3 }:
5   # Run a single node k3s cluster and verify a pod can run
6   single-node = import ./single-node.nix { inherit system pkgs; };
7   # Run a multi-node k3s cluster and verify pod networking works across nodes
8   multi-node = import ./multi-node.nix { inherit system pkgs; };