feat: beginning of v2
All checks were successful
continuous-integration/drone/push Build is passing

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2024-04-28 11:13:13 +02:00
commit 779c48145c
14 changed files with 1203 additions and 0 deletions

39
examples/cuddle.ncl Normal file
View File

@@ -0,0 +1,39 @@
let { Vars, GoPlan, .. } = import "cuddle/vars.ncl" in
let something = "something" in
{
vars = {
name = "some-service",
owner = "git.front.kjuulh.io/kjuulh",
values = {
something = {
something = "something"
},
something_else = {
something = {
some = "something",
something = "something"
}
}
}
},
go_plan = {
database = {
enabled = true
},
rabbitmq = {
enabled = true
},
clusters = {
dev = {
name = "something",
env = {
"some.thing" = something
}
}
}
},
} & Vars & GoPlan