diff --git a/execution/theodolite.py b/execution/theodolite.py
index 2c45bc06740641139c6f72eb142cfd195f96abd0..9ca98ddc4bfb34df9b4df1d4e67da37537704a79 100755
--- a/execution/theodolite.py
+++ b/execution/theodolite.py
@@ -29,7 +29,7 @@ def load_variables():
     return args
 
 
-def main(uc, loads, instances_list, partitions, cpu_limit, memory_limit, commit_ms, duration, domain_restriction, search_strategy, reset, reset_only):
+def main(uc, loads, instances_list, partitions, cpu_limit, memory_limit, commit_ms, duration, domain_restriction, search_strategy, reset, reset_only, namespace):
 
     print(f"Domain restriction of search space activated: {domain_restriction}")
     print(f"Chosen search strategy: {search_strategy}")
@@ -175,4 +175,4 @@ if __name__ == '__main__':
     main(args.uc, args.loads, args.instances_list, args.partitions, args.cpu_limit,
          args.memory_limit, args.commit_ms, args.duration,
          args.domain_restriction, args.search_strategy, args.reset,
-         args.reset_only)
+         args.reset_only, args.namespace)
diff --git a/execution/theodolite.yaml b/execution/theodolite.yaml
index d5e821469aca5a394081a139f2ebadb703b4aa98..c083d327e99ef9af94f407ea4c2d1e789286ce74 100644
--- a/execution/theodolite.yaml
+++ b/execution/theodolite.yaml
@@ -30,6 +30,8 @@ spec:
         #   value: ""
         - name: PROMETHEUS_BASE_URL
           value: "http://prometheus-operated:9090"
+        # - name: NAMESPACE
+        #   value: "default"
         - name: PYTHONUNBUFFERED
           value: "1"
       restartPolicy: Never