change name
This commit is contained in:
parent
8937179cfd
commit
9b3378fac7
2 changed files with 4 additions and 4 deletions
15
modules/k3s/deployments/test-ubuntu.nix
Normal file
15
modules/k3s/deployments/test-ubuntu.nix
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{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" ];
|
||||
}
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue