Nix-Config/modules/k3s/deployments/ubuntu.nix
2026-05-18 00:47:23 -05:00

15 lines
No EOL
277 B
Nix

{cfg, lib, inputs, ...}:
{
ubuntu.content = {
apiVersion = "v1";
kind = "Pod";
metadata.name = "ubuntu";
spec.containers = [
{
name = "ubuntu";
image = "ubuntu:latest";
command = [ "tail" "-f" "/dev/null" ];
}
];
};
}