mirror of
https://github.com/TECHNOFAB11/kubenix.git
synced 2025-12-12 16:10:05 +01:00
9 lines
235 B
Nix
9 lines
235 B
Nix
{ kubenix ? import ../../../.. }:
|
|
kubenix.evalModules.${builtins.currentSystem} {
|
|
module = { kubenix, ... }: {
|
|
imports = [ ./module.nix ];
|
|
|
|
kubenix.project = "multi-namespace-example";
|
|
kubernetes.version = "1.24";
|
|
};
|
|
}
|