Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
35 lines
1.1 KiB
Nix
35 lines
1.1 KiB
Nix
{
|
|
system ? builtins.currentSystem,
|
|
pkgs ? import ../../.. { inherit system; },
|
|
lib ? pkgs.lib,
|
|
}:
|
|
let
|
|
allK3s = lib.filterAttrs (
|
|
n: _: lib.strings.hasPrefix "k3s_" n && (builtins.tryEval pkgs.${n}).success
|
|
) pkgs;
|
|
in
|
|
{
|
|
airgap-images = lib.mapAttrs (
|
|
_: k3s: import ./airgap-images.nix { inherit system pkgs k3s; }
|
|
) allK3s;
|
|
auto-deploy = lib.mapAttrs (_: k3s: import ./auto-deploy.nix { inherit system pkgs k3s; }) allK3s;
|
|
auto-deploy-charts = lib.mapAttrs (
|
|
_: k3s: import ./auto-deploy-charts.nix { inherit system pkgs k3s; }
|
|
) allK3s;
|
|
containerd-config = lib.mapAttrs (
|
|
_: k3s: import ./containerd-config.nix { inherit system pkgs k3s; }
|
|
) allK3s;
|
|
etcd = lib.mapAttrs (
|
|
_: k3s:
|
|
import ./etcd.nix {
|
|
inherit system pkgs k3s;
|
|
inherit (pkgs) etcd;
|
|
}
|
|
) allK3s;
|
|
kubelet-config = lib.mapAttrs (
|
|
_: k3s: import ./kubelet-config.nix { inherit system pkgs k3s; }
|
|
) allK3s;
|
|
multi-node = lib.mapAttrs (_: k3s: import ./multi-node.nix { inherit system pkgs k3s; }) allK3s;
|
|
single-node = lib.mapAttrs (_: k3s: import ./single-node.nix { inherit system pkgs k3s; }) allK3s;
|
|
}
|