workadventure/deeployer.libsonnet
2020-04-22 19:16:04 +02:00

36 lines
1,008 B
Plaintext

{
local env = std.extVar("env"),
local namespace = env.GITHUB_REF_SLUG,
local tag = if namespace == "master" then "latest" else namespace,
"$schema": "https://raw.githubusercontent.com/thecodingmachine/deeployer/master/deeployer.schema.json",
"containers": {
"back": {
"image": "thecodingmachine/workadventure-back:"+tag,
"host": {
"url": "api."+namespace+".workadventure.test.thecodingmachine.com",
"https": "enable"
},
"ports": [8080],
"env": {
"SECRET_KEY": "tempSecretKeyNeedsToChange"
}
},
"front": {
"image": "thecodingmachine/workadventure-front:"+tag,
"host": {
"url": namespace+".workadventure.test.thecodingmachine.com",
"https": "enable"
},
"ports": [80],
"env": {
"API_URL": "http://api."+namespace+".workadventure.test.thecodingmachine.com"
}
}
},
"config": {
"https": {
"mail": "d.negrier@thecodingmachine.com"
}
}
}