kjuulh
779c48145c
All checks were successful
continuous-integration/drone/push Build is passing
Signed-off-by: kjuulh <contact@kjuulh.io>
40 lines
651 B
Plaintext
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
|