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-11-05 11:58:33 +01:00
|
|
|
local adminUrl = if namespace == "master" || namespace == "develop" || std.startsWith(namespace, "admin") then "https://admin."+url else null,
|
2020-04-13 15:07:04 +02:00
|
|
|
"$schema": "https://raw.githubusercontent.com/thecodingmachine/deeployer/master/deeployer.schema.json",
|
2020-06-25 12:07:43 +02:00
|
|
|
"version": "1.0",
|
2020-04-13 15:07:04 +02:00
|
|
|
"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-05-13 15:31:01 +02:00
|
|
|
"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": {
|
2020-10-14 12:00:23 +02:00
|
|
|
"SECRET_KEY": "tempSecretKeyNeedsToChange",
|
|
|
|
"ADMIN_API_TOKEN": env.ADMIN_API_TOKEN,
|
2020-10-19 12:07:05 +02:00
|
|
|
"JITSI_ISS": env.JITSI_ISS,
|
|
|
|
"JITSI_URL": env.JITSI_URL,
|
|
|
|
"SECRET_JITSI_KEY": env.SECRET_JITSI_KEY,
|
2020-11-05 11:58:33 +01:00
|
|
|
} + if adminUrl != null then {
|
|
|
|
"ADMIN_API_URL": adminUrl,
|
|
|
|
} else {}
|
2020-04-13 15:07:04 +02:00
|
|
|
},
|
|
|
|
"front": {
|
2020-04-13 15:44:33 +02:00
|
|
|
"image": "thecodingmachine/workadventure-front:"+tag,
|
2020-04-22 12:31:17 +02:00
|
|
|
"host": {
|
2020-06-01 16:12:48 +02:00
|
|
|
"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": {
|
2020-08-31 12:18:00 +02:00
|
|
|
"API_URL": "api."+url,
|
2020-11-13 12:15:33 +01:00
|
|
|
"ADMIN_URL": "admin."+url,
|
2020-10-19 12:07:05 +02:00
|
|
|
"JITSI_URL": env.JITSI_URL,
|
|
|
|
"SECRET_JITSI_KEY": env.SECRET_JITSI_KEY,
|
2020-08-28 17:30:33 +02:00
|
|
|
"TURN_SERVER": "turn:coturn.workadventu.re:443,turns:coturn.workadventu.re:443",
|
2020-08-28 13:52:25 +02:00
|
|
|
"TURN_USER": "workadventure",
|
2020-10-19 12:07:05 +02:00
|
|
|
"TURN_PASSWORD": "WorkAdventure123",
|
|
|
|
"JITSI_PRIVATE_MODE": if env.SECRET_JITSI_KEY != '' then "true" else "false"
|
2020-04-13 15:07:04 +02:00
|
|
|
}
|
2020-06-01 16:12:48 +02:00
|
|
|
},
|
2020-07-23 18:43:51 +02:00
|
|
|
"maps": {
|
|
|
|
"image": "thecodingmachine/workadventure-maps:"+tag,
|
|
|
|
"host": {
|
|
|
|
"url": "maps."+url,
|
|
|
|
"https": "enable"
|
|
|
|
},
|
|
|
|
"ports": [80]
|
|
|
|
},
|
2020-06-01 16:12:48 +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-06-17 22:55:03 +02:00
|
|
|
},
|
|
|
|
k8sextension(k8sConf)::
|
|
|
|
k8sConf + {
|
|
|
|
back+: {
|
|
|
|
deployment+: {
|
|
|
|
spec+: {
|
|
|
|
template+: {
|
|
|
|
metadata+: {
|
|
|
|
annotations+: {
|
|
|
|
"prometheus.io/port": "8080",
|
|
|
|
"prometheus.io/scrape": "true"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-04-13 15:07:04 +02:00
|
|
|
}
|
|
|
|
}
|