From da9aa399e103708c4bd8cbcc9ce2119859e7e7be Mon Sep 17 00:00:00 2001 From: NyxErinys Date: Tue, 19 May 2026 03:03:46 -0500 Subject: [PATCH] retest deleting --- modules/k3s/deployments/default.nix | 2 +- modules/k3s/deployments/test-ubuntu.nix | 15 --------------- 2 files changed, 1 insertion(+), 16 deletions(-) delete mode 100644 modules/k3s/deployments/test-ubuntu.nix diff --git a/modules/k3s/deployments/default.nix b/modules/k3s/deployments/default.nix index 4ab7f67..dae0ce7 100644 --- a/modules/k3s/deployments/default.nix +++ b/modules/k3s/deployments/default.nix @@ -1,7 +1,7 @@ { cfg, lib, inputs, ... }: let manifests = [ - ./test-ubuntu.nix + ]; imported = map ( n: import n { inherit cfg lib inputs; } ) manifests; in diff --git a/modules/k3s/deployments/test-ubuntu.nix b/modules/k3s/deployments/test-ubuntu.nix deleted file mode 100644 index d0c92f8..0000000 --- a/modules/k3s/deployments/test-ubuntu.nix +++ /dev/null @@ -1,15 +0,0 @@ -{cfg, lib, inputs, ...}: -{ - test-ubuntu.content = { - apiVersion = "v1"; - kind = "Pod"; - metadata.name = "test-ubuntu"; - spec.containers = [ - { - name = "test-ubuntu"; - image = "ubuntu:latest"; - command = [ "tail" "-f" "/dev/null" ]; - } - ]; - }; -} \ No newline at end of file