chore: add basic template and lib

This commit is contained in:
technofab 2024-03-06 10:23:25 +00:00
parent c39e29b568
commit 6d7653ff0c
8 changed files with 593 additions and 0 deletions

11
template/values.nix Normal file
View file

@ -0,0 +1,11 @@
{
lib,
utils,
...
}:
with lib; {
# for some basic values see https://github.com/helm/examples/blob/4888ba8fb8180dd0c36d1e84c1fcafc6efd81532/charts/hello-world/values.yaml
options = {
# define values here
};
}