mirror of
https://github.com/TECHNOFAB11/kubenix.git
synced 2025-12-12 08:00:06 +01:00
17 lines
353 B
Nix
17 lines
353 B
Nix
{kubenix ? import ../../../..}:
|
|
kubenix.evalModules.x86_64-linux {
|
|
module = {kubenix, ...}: {
|
|
imports = with kubenix.modules; [testing];
|
|
testing = {
|
|
tests = [./test.nix];
|
|
common = [
|
|
{
|
|
features = ["k8s"];
|
|
options = {
|
|
kubernetes.version = "1.24";
|
|
};
|
|
}
|
|
];
|
|
};
|
|
};
|
|
}
|