16 lines
No EOL
306 B
Nix
16 lines
No EOL
306 B
Nix
{cfg, lib, inputs, ...}:
|
|
{
|
|
ubuntu.content = {
|
|
apiVersion = "v1";
|
|
kind = "Pod";
|
|
metadata.name = "ubuntu";
|
|
spec.containers = [
|
|
{
|
|
name = "ubuntu";
|
|
image = "ubuntu:latest";
|
|
command = [ "sh" "-c" ];
|
|
args = [ "tail" "-f" "/dev/null" ]
|
|
}
|
|
];
|
|
};
|
|
} |