mirror of
https://github.com/TECHNOFAB11/kubenix.git
synced 2025-12-12 16:10:05 +01:00
18 lines
353 B
Nix
18 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";
|
||
|
|
};
|
||
|
|
}
|
||
|
|
];
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|