Deploying master on new workadventu.re domain
authorDavid Négrier <d.negrier@thecodingmachine.com>
Wed, 13 May 2020 13:31:01 +0000 (15:31 +0200)
committerDavid Négrier <d.negrier@thecodingmachine.com>
Wed, 13 May 2020 13:32:42 +0000 (15:32 +0200)
... but still deploying in the test cluster.

deeployer.libsonnet

index a39bd32a94e5efe26b0c98cdd30e1a917c9280fd..3ba149ae8c64670add53b80078d7f19ec6503443 100644 (file)
@@ -2,12 +2,13 @@
   local env = std.extVar("env"),
   local namespace = env.GITHUB_REF_SLUG,
   local tag = namespace,
+  local url = if namespace == "master" then "wordadventu.re" else namespace+".workadventure.test.thecodingmachine.com",
   "$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",
+         "url": "api."+url,
          "https": "enable"
        },
        "ports": [8080],
     "front": {
       "image": "thecodingmachine/workadventure-front:"+tag,
       "host": {
-        "url": namespace+".workadventure.test.thecodingmachine.com",
+        "url": url,
         "https": "enable"
       },
       "ports": [80],
       "env": {
-        "API_URL": "https://api."+namespace+".workadventure.test.thecodingmachine.com"
+        "API_URL": "https://api."+url
       }
     }
   },