From 9b3378fac7aa5ed482ad4f2231a15ea72e06ef7b Mon Sep 17 00:00:00 2001 From: NyxErinys Date: Tue, 19 May 2026 02:51:38 -0500 Subject: [PATCH] change name --- modules/k3s/deployments/default.nix | 2 +- modules/k3s/deployments/{ubuntu.nix => test-ubuntu.nix} | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) rename modules/k3s/deployments/{ubuntu.nix => test-ubuntu.nix} (68%) diff --git a/modules/k3s/deployments/default.nix b/modules/k3s/deployments/default.nix index 14c4702..4ab7f67 100644 --- a/modules/k3s/deployments/default.nix +++ b/modules/k3s/deployments/default.nix @@ -1,7 +1,7 @@ { cfg, lib, inputs, ... }: let manifests = [ - ./ubuntu.nix + ./test-ubuntu.nix ]; imported = map ( n: import n { inherit cfg lib inputs; } ) manifests; in diff --git a/modules/k3s/deployments/ubuntu.nix b/modules/k3s/deployments/test-ubuntu.nix similarity index 68% rename from modules/k3s/deployments/ubuntu.nix rename to modules/k3s/deployments/test-ubuntu.nix index 055eb7b..d0c92f8 100644 --- a/modules/k3s/deployments/ubuntu.nix +++ b/modules/k3s/deployments/test-ubuntu.nix @@ -1,12 +1,12 @@ {cfg, lib, inputs, ...}: { - ubuntu.content = { + test-ubuntu.content = { apiVersion = "v1"; kind = "Pod"; - metadata.name = "ubuntu"; + metadata.name = "test-ubuntu"; spec.containers = [ { - name = "ubuntu"; + name = "test-ubuntu"; image = "ubuntu:latest"; command = [ "tail" "-f" "/dev/null" ]; }