change name
This commit is contained in:
parent
8937179cfd
commit
9b3378fac7
2 changed files with 4 additions and 4 deletions
|
|
@ -1,7 +1,7 @@
|
||||||
{ cfg, lib, inputs, ... }:
|
{ cfg, lib, inputs, ... }:
|
||||||
let
|
let
|
||||||
manifests = [
|
manifests = [
|
||||||
./ubuntu.nix
|
./test-ubuntu.nix
|
||||||
];
|
];
|
||||||
imported = map ( n: import n { inherit cfg lib inputs; } ) manifests;
|
imported = map ( n: import n { inherit cfg lib inputs; } ) manifests;
|
||||||
in
|
in
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
{cfg, lib, inputs, ...}:
|
{cfg, lib, inputs, ...}:
|
||||||
{
|
{
|
||||||
ubuntu.content = {
|
test-ubuntu.content = {
|
||||||
apiVersion = "v1";
|
apiVersion = "v1";
|
||||||
kind = "Pod";
|
kind = "Pod";
|
||||||
metadata.name = "ubuntu";
|
metadata.name = "test-ubuntu";
|
||||||
spec.containers = [
|
spec.containers = [
|
||||||
{
|
{
|
||||||
name = "ubuntu";
|
name = "test-ubuntu";
|
||||||
image = "ubuntu:latest";
|
image = "ubuntu:latest";
|
||||||
command = [ "tail" "-f" "/dev/null" ];
|
command = [ "tail" "-f" "/dev/null" ];
|
||||||
}
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue