kubenix/docs/content/examples/testing/default.nix

18 lines
353 B
Nix
Raw Normal View History

2022-08-29 02:04:47 -04:00
{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";
};
}
];
};
};
}