Skip to content
Snippets Groups Projects
Commit 5c809b50 authored by Sören Henning's avatar Sören Henning
Browse files

Align Theodolite job defaults

parent 681c1226
No related branches found
No related tags found
1 merge request!168Enhance Code Quality
...@@ -25,11 +25,11 @@ spec: ...@@ -25,11 +25,11 @@ spec:
# - name: MODE # - name: MODE
# value: yaml-executor # Default is `yaml-executor` # value: yaml-executor # Default is `yaml-executor`
- name: THEODOLITE_EXECUTION - 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 - 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 - name: THEODOLITE_APP_RESOURCES
value: /etc/app-resources value: "benchmark-resources"
- name: RESULTS_FOLDER # Folder for saving results - name: RESULTS_FOLDER # Folder for saving results
value: results # Default is the pwd (/deployments) 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. # - name: CREATE_RESULTS_FOLDER # Specify whether the specified result folder should be created if it does not exist.
...@@ -37,11 +37,11 @@ spec: ...@@ -37,11 +37,11 @@ spec:
volumeMounts: volumeMounts:
- mountPath: "/deployments/results" # the mounted path must corresponds to the value of `RESULT_FOLDER`. - mountPath: "/deployments/results" # the mounted path must corresponds to the value of `RESULT_FOLDER`.
name: theodolite-pv-storage name: theodolite-pv-storage
- mountPath: "/etc/app-resources" # must be corresponds to the value of `THEODOLITE_APP_RESOURCES`. - mountPath: "/deployments/benchmark-resources" # must correspond to the value of `THEODOLITE_APP_RESOURCES`.
name: app-resources name: benchmark-resources
- mountPath: "/etc/benchmark" # must be corresponds to the value of `THEODOLITE_BENCHMARK`. - mountPath: "/deployments/benchmark" # must correspond to the value of `THEODOLITE_BENCHMARK`.
name: 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 name: execution
restartPolicy: Never restartPolicy: Never
# Uncomment if RBAC is enabled and configured # Uncomment if RBAC is enabled and configured
...@@ -52,9 +52,9 @@ spec: ...@@ -52,9 +52,9 @@ spec:
- name: theodolite-pv-storage - name: theodolite-pv-storage
persistentVolumeClaim: persistentVolumeClaim:
claimName: theodolite-pv-claim claimName: theodolite-pv-claim
- name: app-resources - name: benchmark-resources
configMap: configMap:
name: app-resources-configmap name: benchmark-resources-configmap
- name: benchmark - name: benchmark
configMap: configMap:
name: benchmark-configmap name: benchmark-configmap
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment