Add viya namespace

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2025-01-28 15:44:06 +00:00
parent 28f6767def
commit 51ef8d6ac9
4 changed files with 21 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
{ lib, ... }:
{
services.kubernetes.addonManager.bootstrapAddons = lib.mkMerge [
(import ./namespace { })
];
}

View File

@@ -0,0 +1,10 @@
{ ... }:
{
viya-ns = {
apiVersion = "v1";
kind = "Namespace";
metadata = {
name = "viya";
};
};
}

View File

@@ -0,0 +1,4 @@
{ ... }:
{
imports = [ ./addons ];
}

View File

@@ -50,6 +50,7 @@
./configs/git
./configs/globalprotect-remote-connect
./configs/viya
./users/nikara
];