mirror of
https://github.com/TECHNOFAB11/kubenix.git
synced 2025-12-12 16:10:05 +01:00
15 lines
344 B
Nix
15 lines
344 B
Nix
{ kubenix ? import ../../../.. }:
|
|
kubenix.evalModules.${builtins.currentSystem} {
|
|
module = { kubenix, ... }: {
|
|
imports = [ kubenix.modules.testing ];
|
|
testing = {
|
|
tests = [ ./test.nix ];
|
|
common = [{
|
|
features = [ "k8s" ];
|
|
options = {
|
|
kubernetes.version = "1.24";
|
|
};
|
|
}];
|
|
};
|
|
};
|
|
}
|