mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-13 08:23:25 +00:00
15 lines
531 B
Nix
15 lines
531 B
Nix
|
{
|
||
|
system ? builtins.currentSystem,
|
||
|
pkgs ? import ../../.. { inherit system; },
|
||
|
lib ? pkgs.lib,
|
||
|
}:
|
||
|
let
|
||
|
allRKE2 = lib.filterAttrs (n: _: lib.strings.hasPrefix "rke2" n) pkgs;
|
||
|
in
|
||
|
{
|
||
|
# Run a single node rke2 cluster and verify a pod can run
|
||
|
singleNode = lib.mapAttrs (_: rke2: import ./single-node.nix { inherit system pkgs rke2; }) allRKE2;
|
||
|
# Run a multi-node rke2 cluster and verify pod networking works across nodes
|
||
|
multiNode = lib.mapAttrs (_: rke2: import ./multi-node.nix { inherit system pkgs rke2; }) allRKE2;
|
||
|
}
|