workadventure/deeployer.libsonnet

48 lines
1.2 KiB
Plaintext
Raw Normal View History

2020-04-13 15:07:04 +02:00
{
local env = std.extVar("env"),
2020-04-13 15:44:33 +02:00
local namespace = env.GITHUB_REF_SLUG,
2020-05-03 18:51:25 +02:00
local tag = namespace,
2020-05-13 16:17:58 +02:00
local url = if namespace == "master" then "workadventu.re" else namespace+".workadventure.test.thecodingmachine.com",
2020-04-13 15:07:04 +02:00
"$schema": "https://raw.githubusercontent.com/thecodingmachine/deeployer/master/deeployer.schema.json",
"containers": {
"back": {
2020-04-13 15:44:33 +02:00
"image": "thecodingmachine/workadventure-back:"+tag,
2020-04-22 12:31:17 +02:00
"host": {
"url": "api."+url,
2020-04-22 19:16:04 +02:00
"https": "enable"
2020-04-22 12:31:17 +02:00
},
2020-04-13 15:07:04 +02:00
"ports": [8080],
"env": {
"SECRET_KEY": "tempSecretKeyNeedsToChange"
}
},
"front": {
2020-04-13 15:44:33 +02:00
"image": "thecodingmachine/workadventure-front:"+tag,
2020-04-22 12:31:17 +02:00
"host": {
"url": "play."+url,
2020-04-22 19:16:04 +02:00
"https": "enable"
2020-04-22 12:31:17 +02:00
},
2020-04-13 15:07:04 +02:00
"ports": [80],
"env": {
"API_URL": "https://api."+url
2020-04-13 15:07:04 +02:00
}
},
"website": {
"image": "thecodingmachine/workadventure-website:"+tag,
"host": {
"url": url,
"https": "enable"
},
"ports": [80],
"env": {
"GAME_URL": "https://play."+url
}
2020-04-13 15:07:04 +02:00
}
2020-04-22 19:16:04 +02:00
},
"config": {
"https": {
"mail": "d.negrier@thecodingmachine.com"
}
2020-04-13 15:07:04 +02:00
}
}