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" ]; }