diff --git a/deeployer.libsonnet b/deeployer.libsonnet
index 4b606218..52cea293 100644
--- a/deeployer.libsonnet
+++ b/deeployer.libsonnet
@@ -4,7 +4,7 @@
local tag = namespace,
local url = if namespace == "master" then "workadventu.re" else namespace+".workadventure.test.thecodingmachine.com",
// develop branch does not use admin because of issue with SSL certificate of admin as of now.
- local adminUrl = if namespace == "master" /*|| namespace == "develop"*/ || std.startsWith(namespace, "admin") then "https://"+url else null,
+ local adminUrl = if namespace == "master" || namespace == "develop" || std.startsWith(namespace, "admin") then "https://"+url else null,
"$schema": "https://raw.githubusercontent.com/thecodingmachine/deeployer/master/deeployer.schema.json",
"version": "1.0",
"containers": {
@@ -23,9 +23,12 @@
"JITSI_URL": env.JITSI_URL,
"SECRET_JITSI_KEY": env.SECRET_JITSI_KEY,
"TURN_STATIC_AUTH_SECRET": env.TURN_STATIC_AUTH_SECRET,
- } + if adminUrl != null then {
+ } + (if adminUrl != null then {
"ADMIN_API_URL": adminUrl,
- } else {}
+ } else {}) + if namespace != "master" then {
+ // Absolutely ugly WorkAround to circumvent broken certificates on the K8S test cluster. Don't do this in production kids!
+ "NODE_TLS_REJECT_UNAUTHORIZED": "0"
+ }
},
"back2": {
"image": "thecodingmachine/workadventure-back:"+tag,
@@ -42,9 +45,12 @@
"JITSI_URL": env.JITSI_URL,
"SECRET_JITSI_KEY": env.SECRET_JITSI_KEY,
"TURN_STATIC_AUTH_SECRET": env.TURN_STATIC_AUTH_SECRET,
- } + if adminUrl != null then {
+ } + (if adminUrl != null then {
"ADMIN_API_URL": adminUrl,
- } else {}
+ } else {}) + if namespace != "master" then {
+ // Absolutely ugly WorkAround to circumvent broken certificates on the K8S test cluster. Don't do this in production kids!
+ "NODE_TLS_REJECT_UNAUTHORIZED": "0"
+ }
},
"pusher": {
"replicas": 2,
@@ -61,9 +67,12 @@
"JITSI_URL": env.JITSI_URL,
"API_URL": "back1:50051,back2:50051",
"SECRET_JITSI_KEY": env.SECRET_JITSI_KEY,
- } + if adminUrl != null then {
+ } + (if adminUrl != null then {
"ADMIN_API_URL": adminUrl,
- } else {}
+ } else {}) + if namespace != "master" then {
+ // Absolutely ugly WorkAround to circumvent broken certificates on the K8S test cluster. Don't do this in production kids!
+ "NODE_TLS_REJECT_UNAUTHORIZED": "0"
+ }
},
"front": {
"image": "thecodingmachine/workadventure-front:"+tag,
diff --git a/docker-compose.yaml b/docker-compose.yaml
index 98071437..22b807a7 100644
--- a/docker-compose.yaml
+++ b/docker-compose.yaml
@@ -43,7 +43,7 @@ services:
- ./front:/usr/src/app
labels:
- "traefik.http.routers.front.rule=Host(`play.workadventure.localhost`)"
- - "traefik.http.routers.front.entryPoints=web,traefik"
+ - "traefik.http.routers.front.entryPoints=web"
- "traefik.http.services.front.loadbalancer.server.port=8080"
- "traefik.http.routers.front-ssl.rule=Host(`play.workadventure.localhost`)"
- "traefik.http.routers.front-ssl.entryPoints=websecure"
diff --git a/front/dist/.gitignore b/front/dist/.gitignore
index 4fc7097a..a60c53be 100644
--- a/front/dist/.gitignore
+++ b/front/dist/.gitignore
@@ -1,2 +1,3 @@
index.html
+index.tmpl.html.tmp
/js/
diff --git a/front/dist/index.tmpl.html b/front/dist/index.tmpl.html
index a2b44788..ecf2c671 100644
--- a/front/dist/index.tmpl.html
+++ b/front/dist/index.tmpl.html
@@ -29,7 +29,11 @@