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,10 +1,11 @@
{ evalModules, registry }:
let
{
evalModules,
registry,
}: let
# evaluated configuration
config = (evalModules {
module =
{ kubenix, ... }: {
config =
(evalModules {
module = {kubenix, ...}: {
imports = [
kubenix.modules.testing
./module.nix
@ -16,12 +17,12 @@ let
kubernetes.version = "1.21";
testing = {
tests = [ ./test.nix ];
tests = [./test.nix];
docker.registryUrl = "";
# testing commonalities for tests that exhibit the respective feature
common = [
{
features = [ "k8s" ];
features = ["k8s"];
options = {
kubernetes.version = "1.20";
};
@ -29,10 +30,9 @@ let
];
};
};
}).config;
in
{
})
.config;
in {
inherit config;
# config checks