kubenix/docs/examples/default.nix

8 lines
273 B
Nix
Raw Normal View History

2019-03-07 18:03:51 +01:00
{
2022-04-02 12:40:35 -07:00
system ? builtins.currentSystem,
evalModules ? (import ../. {}).evalModules.${system},
}: {registry ? "docker.io/gatehub"}: {
nginx-deployment = import ./nginx-deployment {inherit evalModules registry;};
2022-08-15 01:27:50 -04:00
helm-chart = import ./helm-chart {inherit evalModules;};
2019-03-07 18:03:51 +01:00
}