mirror of
https://git.sr.ht/~goorzhel/turboprop
synced 2024-12-15 17:50:52 +00:00
33433a953e
I initially thought this would be just another release in `releases/common/namespaces`, but there's a lot more potential than that.
7 lines
144 B
Nix
7 lines
144 B
Nix
{
|
|
mkNamespace = name: extraMetadata: {
|
|
apiVersion = "v1";
|
|
kind = "Namespace";
|
|
metadata = {inherit name;} // extraMetadata;
|
|
};
|
|
}
|