This commit is contained in:
GTrunSec 2022-04-02 12:40:35 -07:00
parent a0ce293db8
commit 60592d3096
No known key found for this signature in database
GPG key ID: 2368FAFA4ABDD2A0
55 changed files with 23668 additions and 30925 deletions

View file

@ -1,6 +1,7 @@
{ pkgs, lib }:
let
{
pkgs,
lib,
}: let
generateIstio = import ./istio {
inherit
pkgs
@ -8,22 +9,22 @@ let
;
};
generateK8S = name: spec: import ./k8s {
inherit
name
pkgs
lib
spec
;
};
in
{
istio = pkgs.linkFarm "istio-generated" [{
name = "latest.nix";
path = generateIstio;
}];
generateK8S = name: spec:
import ./k8s {
inherit
name
pkgs
lib
spec
;
};
in {
istio = pkgs.linkFarm "istio-generated" [
{
name = "latest.nix";
path = generateIstio;
}
];
k8s = pkgs.linkFarm "k8s-generated" [
{
@ -50,5 +51,4 @@ in
});
}
];
}