1
0
Fork 0
mirror of https://git.sr.ht/~goorzhel/turboprop synced 2024-12-15 17:50:52 +00:00
turboprop/lib/resources.nix
Antonio Gurgel 33433a953e Build namespaces
I initially thought this would be just another release in
`releases/common/namespaces`, but there's a lot more potential
than that.
2023-11-19 13:21:41 -08:00

7 lines
144 B
Nix

{
mkNamespace = name: extraMetadata: {
apiVersion = "v1";
kind = "Namespace";
metadata = {inherit name;} // extraMetadata;
};
}