From 5c809b5060dbd4594d6e782cbe4c871eb5f22d5b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?S=C3=B6ren=20Henning?= <soeren.henning@email.uni-kiel.de>
Date: Sat, 24 Jul 2021 11:04:21 +0200
Subject: [PATCH] Align Theodolite job defaults

---
 execution/theodolite.yaml | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/execution/theodolite.yaml b/execution/theodolite.yaml
index 749c94b12..ae18a68ee 100644
--- a/execution/theodolite.yaml
+++ b/execution/theodolite.yaml
@@ -25,11 +25,11 @@ spec:
             # - name: MODE
             #   value: yaml-executor # Default is `yaml-executor`
             - name: THEODOLITE_EXECUTION
-              value: /etc/execution/example-execution-yaml-resource.yaml # The name of this file must correspond to the filename of the execution, from which the config map is created.
+              value: "execution/execution.yaml" # The name of this file must correspond to the filename of the execution, from which the config map is created.
             - name: THEODOLITE_BENCHMARK
-              value: /etc/benchmark/example-benchmark-yaml-resource.yaml # The name of this file must correspond to the filename of the benchmark, from which the config map is created.
+              value: "benchmark/benchmark.yaml" # The name of this file must correspond to the filename of the benchmark, from which the config map is created.
             - name: THEODOLITE_APP_RESOURCES
-              value: /etc/app-resources
+              value: "benchmark-resources"
             - name: RESULTS_FOLDER # Folder for saving results
               value: results # Default is the pwd (/deployments)
             # - name: CREATE_RESULTS_FOLDER # Specify whether the specified result folder should be created if it does not exist.
@@ -37,11 +37,11 @@ spec:
           volumeMounts:
             - mountPath: "/deployments/results" # the mounted path must corresponds to the value of `RESULT_FOLDER`.
               name: theodolite-pv-storage
-            - mountPath: "/etc/app-resources" # must be corresponds to the value of `THEODOLITE_APP_RESOURCES`.
-              name: app-resources
-            - mountPath: "/etc/benchmark"  # must be corresponds to the value of `THEODOLITE_BENCHMARK`.
+            - mountPath: "/deployments/benchmark-resources" # must correspond to the value of `THEODOLITE_APP_RESOURCES`.
+              name: benchmark-resources
+            - mountPath: "/deployments/benchmark"  # must correspond to the value of `THEODOLITE_BENCHMARK`.
               name: benchmark
-            - mountPath: "/etc/execution" # must be corresponds to the value of `THEODOLITE_EXECUTION`.
+            - mountPath: "/deployments/execution" # must correspond to the value of `THEODOLITE_EXECUTION`.
               name: execution
       restartPolicy: Never
       # Uncomment if RBAC is enabled and configured
@@ -52,9 +52,9 @@ spec:
         - name: theodolite-pv-storage
           persistentVolumeClaim:
             claimName: theodolite-pv-claim
-        - name: app-resources
+        - name: benchmark-resources
           configMap:
-            name: app-resources-configmap
+            name: benchmark-resources-configmap
         - name: benchmark
           configMap:
             name: benchmark-configmap
-- 
GitLab