remove test pod

This commit is contained in:
NyxErinys 2026-05-18 01:07:55 -05:00
parent bcc1de8504
commit 13ca7b2517
2 changed files with 1 additions and 16 deletions

View file

@ -1,15 +0,0 @@
{cfg, lib, inputs, ...}:
{
ubuntu.content = {
apiVersion = "v1";
kind = "Pod";
metadata.name = "ubuntu";
spec.containers = [
{
name = "ubuntu";
image = "ubuntu:latest";
command = [ "tail" "-f" "/dev/null" ];
}
];
};
}

View file

@ -1,7 +1,7 @@
{ cfg, lib, inputs, ... }: { cfg, lib, inputs, ... }:
let let
manifests = [ manifests = [
./deployments # ./deployments
# ./services # ./services
]; ];
imported = map ( n: import n { inherit cfg lib inputs; } ) manifests; imported = map ( n: import n { inherit cfg lib inputs; } ) manifests;