workadventure/deeployer.libsonnet

25 lines
927 B
Plaintext
Raw Normal View History

2020-04-13 15:07:04 +02:00
{
local env = std.extVar("env"),
# FIXME: namespace does not work if the branch contains a "/"
local namespace = std.split(env.GITHUB_REF, "/")[2],
2020-04-13 15:07:04 +02:00
"$schema": "https://raw.githubusercontent.com/thecodingmachine/deeployer/master/deeployer.schema.json",
"containers": {
"back": {
"image": "thecodingmachine/workadventure-back:"+(if namespace == "master" then "latest" else namespace),
2020-04-13 15:07:04 +02:00
"host": "api."+namespace+".workadventure.test.thecodingmachine.com",
"ports": [8080],
"env": {
"SECRET_KEY": "tempSecretKeyNeedsToChange"
}
},
"front": {
"image": "thecodingmachine/workadventure-front:"+(if namespace == "master" then "latest" else namespace),
2020-04-13 15:07:04 +02:00
"host": namespace+".workadventure.test.thecodingmachine.com",
"ports": [80],
"env": {
"API_URL": "http://api."+namespace+".workadventure.test.thecodingmachine.com"
}
}
}
}