workadventure/deeployer.libsonnet

36 lines
1009 B
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,
local tag = if namespace == "master" then "latest" else namespace,
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": {
2020-04-22 19:16:04 +02:00
"url": "api."+namespace+".workadventure.test.thecodingmachine.com",
"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": {
2020-04-22 19:16:04 +02:00
"url": namespace+".workadventure.test.thecodingmachine.com",
"https": "enable"
2020-04-22 12:31:17 +02:00
},
2020-04-13 15:07:04 +02:00
"ports": [80],
"env": {
2020-04-22 23:27:30 +02:00
"API_URL": "https://api."+namespace+".workadventure.test.thecodingmachine.com"
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
}
}