Nix-Config/modules/k3s/deployments/test-ubuntu.nix
2026-05-19 02:51:38 -05:00

15 lines
No EOL
292 B
Nix

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