diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 53fece743632ac17d0e75d830406eacbb2627117..2475c544299f37c3ac78fdcf333cca68f0d2e876 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -379,6 +379,7 @@ deploy_nomad:
     matrix:
       - STATION:
           - cs001
+          - dts-lab
         COMPONENT:
           - monitoring
           - logging
@@ -395,8 +396,13 @@ deploy_nomad:
     name: $STATION
   script:
     - |
+      if [ "${STATION}" == "dts-lab" ]; then \
+          HOSTNAME="dts-lab.astron.nl" \
+      else \
+          HOSTNAME="${STATION}c.control.lofar" \
+      fi \
       levant deploy \
-        -address="http://${STATION}c.control.lofar:4646" \
+        -address="http://${HOSTNAME}:4646" \
         -var-file=infra/env.yaml \
         -var image_tag="${CI_COMMIT_REF_SLUG}" \
         -var station="${STATION}" \