cuddle/examples/cuddle.ncl
kjuulh 779c48145c
All checks were successful
continuous-integration/drone/push Build is passing
feat: beginning of v2
Signed-off-by: kjuulh <contact@kjuulh.io>
2024-04-28 11:13:13 +02:00

40 lines
651 B
Plaintext

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