From 80d8842f94f42b5ee50269784eb721cc11f29a8e Mon Sep 17 00:00:00 2001 From: NyxErinys Date: Mon, 18 May 2026 01:34:18 -0500 Subject: [PATCH] change name of disable --- modules/k3s/default.nix | 2 +- modules/k3s/deployments/ubuntu.nix | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/k3s/default.nix b/modules/k3s/default.nix index c06ef78..b5d62d9 100644 --- a/modules/k3s/default.nix +++ b/modules/k3s/default.nix @@ -37,7 +37,7 @@ in serverAddr = mkIf (!cfg.initServer) "https://10.5.0.103:6443"; manifests = import ./manifests.nix { inherit lib cfg inputs; }; disable = [ - "test-ubuntu" + "ubuntu" ]; }; }; diff --git a/modules/k3s/deployments/ubuntu.nix b/modules/k3s/deployments/ubuntu.nix index e706fd3..055eb7b 100644 --- a/modules/k3s/deployments/ubuntu.nix +++ b/modules/k3s/deployments/ubuntu.nix @@ -3,10 +3,10 @@ ubuntu.content = { apiVersion = "v1"; kind = "Pod"; - metadata.name = "test-ubuntu"; + metadata.name = "ubuntu"; spec.containers = [ { - name = "test-ubuntu"; + name = "ubuntu"; image = "ubuntu:latest"; command = [ "tail" "-f" "/dev/null" ]; }