diff --git a/modules/k3s/deployments/ubuntu.nix b/modules/k3s/deployments/ubuntu.nix deleted file mode 100644 index 055eb7b..0000000 --- a/modules/k3s/deployments/ubuntu.nix +++ /dev/null @@ -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" ]; - } - ]; - }; -} \ No newline at end of file diff --git a/modules/k3s/manifests.nix b/modules/k3s/manifests.nix index f18c7cd..bfec6b8 100644 --- a/modules/k3s/manifests.nix +++ b/modules/k3s/manifests.nix @@ -1,7 +1,7 @@ { cfg, lib, inputs, ... }: let manifests = [ - ./deployments + # ./deployments # ./services ]; imported = map ( n: import n { inherit cfg lib inputs; } ) manifests;